Simple color data type

A simple color is a seven-character string representing the red, green and blue components of a color, as defined in the HTML standard. This is commonly known as a hexcode or hex value.

Examples: #000000 (black), #ff0000 (red).

Base type: String

Regex pattern: #[a-f0-9]{6}