# `Owl.TrueColor`
[🔗](https://github.com/fuelen/owl/blob/v0.13.1/lib/owl/true_color.ex#L1)

True color escape sequences.

## Example

    "Hello"
    |> Owl.Data.tag([Owl.TrueColor.color(1, 244, 74), Owl.TrueColor.color_background(133, 48, 100)])
    |> Owl.IO.puts()

# `color`

```elixir
@spec color(0..255, 0..255, 0..255) :: String.t()
```

Returns a true color foreground escape sequence for the given RGB values.

## Example

    iex> Owl.TrueColor.color(1, 244, 74)
    "\e[38;2;1;244;74m"

# `color_background`

```elixir
@spec color_background(0..255, 0..255, 0..255) :: String.t()
```

Returns a true color background escape sequence for the given RGB values.

## Example
    iex> Owl.TrueColor.color_background(133, 48, 100)
    "\e[48;2;133;48;100m"

---

*Consult [api-reference.md](api-reference.md) for complete listing*
