{% comment %} Instantiate this Liquid template with a `Palette`, e.g.: ``` cargo run --features=cli --bin base16cs-render -- \ --palette examples/colorschemes/selenized_light.yaml \ --template examples/palette.md.liquid \ > selenized-light.md ``` {% endcomment %} # {{ palette.name }} {% for color in palette.colors %} {% endfor %}
name L*a*b* sRGB RGB (#hex)
{{ color.base.name }} {{ color.base.lab.l }} {{ color.base.lab.a }} {{ color.base.lab.b }} rgb({{ color.srgb.red }} {{ color.srgb.green }} {{ color.srgb.blue }}) #{{ color.srgb_hex }}