Color

color_to_hex

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

Input

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

Output

#EA5AB9

color_to_rgb

Converts a hex color string to rgba format.

Input

{{ "#EA5AB9" | color_to_rgb }}

Output

color_to_hsl

Converts a hex color string to hsl format.

Input

Output

hex_to_rgba

Converts a hex color string to rgba format, default alpha is 1.0

Input

Output

Input

Output