README.md
# tulip
Tulip is a simple Gleam project for adding color to your terminal output. All 256 ANSI colors are supported.
[![Package Version](https://img.shields.io/hexpm/v/tulip)](https://hex.pm/packages/tulip)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/tulip/)
```sh
gleam add tulip
```
```gleam
import tulip
pub fn main() {
tulip.println(213, "Hello, world!")
}
```
Further documentation can be found at <https://hexdocs.pm/tulip>.
## Development
```sh
gleam run # Run the project
gleam test # Run the tests
gleam shell # Run an Erlang shell
```