Skip to main content

color_to_hex

string | color_to_hex
returns string

Converts a CSS color string to hexadecimal format (hex6).

Because colors are converted to hex6 format, if a color with an alpha component is provided, then the alpha component is excluded from the output.

{{ 'rgb(234, 90, 185)' | color_to_hex }}

Output

#ea5ab9
Was this page helpful?