Skip to main content

hex_to_rgba
Deprecated

string | hex_to_rgba
returns string

Converts a CSS color string from hexadecimal format to RGBA format. Shorthand hexadecimal formatting (hex3) is also accepted.

Deprecated

The hex_to_rgba filter has been replaced by color_to_rgb and color_modify.

{{ '#EA5AB9' | hex_to_rgba }}

Output

rgba(234,90,185,1)
string | hex_to_rgba: number

The default alpha value is 1.0. However, you can specify a decimal value between 0.0 and 1.0.

{{ '#EA5AB9' | hex_to_rgba: 0.5 }}

Output

rgba(234,90,185,0.5)
Was this page helpful?