# `ExGram.Model.UniqueGiftColors`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.64.0/lib/ex_gram.ex#L5521)

This object contains information about the color scheme for a user's name, message replies and link previews based on a unique gift.

Check the [documentation of this model on Telegram Bot API](https://core.telegram.org/bots/api#uniquegiftcolors)

- `model_custom_emoji_id`: Custom emoji identifier of the unique gift's model
- `symbol_custom_emoji_id`: Custom emoji identifier of the unique gift's symbol
- `light_theme_main_color`: Main color used in light themes; RGB format
- `light_theme_other_colors`: List of 1-3 additional colors used in light themes; RGB format
- `dark_theme_main_color`: Main color used in dark themes; RGB format
- `dark_theme_other_colors`: List of 1-3 additional colors used in dark themes; RGB format

# `t`

```elixir
@type t() :: %ExGram.Model.UniqueGiftColors{
  dark_theme_main_color: integer(),
  dark_theme_other_colors: [integer()],
  light_theme_main_color: integer(),
  light_theme_other_colors: [integer()],
  model_custom_emoji_id: String.t(),
  symbol_custom_emoji_id: String.t()
}
```

# `decode_as`

---

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