Skip to main content

hex_to_rgb

in Deployteq Modifiers
Authors list
Published: Aug 7, 2024|Last updated: Oct 17, 2024

With this modifier, it's possible to convert an HTML color code into an RGB value in your email content.

For example, you can use it to convert a value from a color picker property into an RGB value.

Note


hex_to_rgb

{{$hex_colour|hex_to_rgb}}

ExamplesCopy link to Examples to clipboard

Example


hex_to_rgb examples

{{"#FFFFFF"|hex_to_rgb}} {{"#000000"|hex_to_rgb}} {{"#48D1CC"|hex_to_rgb}} {{if $property['Colorpicker']}} {{$property['Colorpicker']}}: {{$property['Colorpicker']|hex_to_rgb}} {{/if}}
copy

Output:

rgb(255,255,255)

rgb(0,0,0)

rgb(72,209,204)

#b52929: rgb(181,41,41)

next pagemd5
previous pagegetimagesize

Please log in or register to submit a comment.