# Hex To RGB

Converts a color from hex to RGB, the perfect match for the [color fieldtype](/fieldtypes/color.md).

```yaml
color: `#FF269E`
```

::tabs

::tab antlers
```antlers
{{ color | hex_to_rgb }}
```
::tab blade
```blade
{{ Statamic::modify($color)->hexToRgb() }}
```
::

```html
255, 38, 158
```
