mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 05:21:14 +00:00
9 lines
321 B
HTML
9 lines
321 B
HTML
{% match color %}
|
|
{% when Color::Rgb with {r, g: g, b: blue} %}
|
|
Colorful: #{{ "{:02X}"|format(r) }}{{ "{:02X}"|format(g) }}{{ "{:02X}"|format(blue) }}
|
|
{% when Color::GrayScale with (val) %}
|
|
Gray: #{{ "{:02X}"|format(val) }}{{ "{:02X}"|format(val) }}{{ "{:02X}"|format(val) }}
|
|
{% else %}
|
|
CMYK not supported
|
|
{% endmatch %}
|