ExVEx.Style.Color (ExVEx v0.1.3)

Copy Markdown View Source

A colour reference from the OOXML style model. Colours can be declared as a concrete RGB value, a reference to a theme palette entry, or a reference to the legacy indexed palette.

Summary

Types

kind()

@type kind() :: :rgb | :theme | :indexed | :auto

t()

@type t() :: %ExVEx.Style.Color{
  kind: kind(),
  tint: float() | nil,
  value: String.t() | non_neg_integer() | nil
}