Current section
Files
Jump to
Current section
Files
gleamy_lights
README.md
README.md
# gleamy_lights
[](https://hex.pm/packages/gleamy_lights)
[](https://hexdocs.pm/gleamy_lights/)
Colored terminal output for Gleam.
```sh
gleam add gleamy_lights@1
```
```gleam
import gleamy_lights.{red, green, blue}
import gleam/io
pub fn main() {
io.println(red("Hello, ") <> green("world") <> blue("!"))
}
```
Further documentation can be found at <https://hexdocs.pm/gleamy_lights>.
## Development
```sh
gleam run # Run the project
gleam test # Run the tests
```