Skip to main content

color_to_rgb

string | color_to_rgb
returns string

Converts a CSS color string to RGB format.

If a color with an alpha component is provided, then the color is converted to RGBA format.

{{ '#EA5AB9' | color_to_rgb }}

Output

rgb(234, 90, 185)
Was this page helpful?