# color-hex-length Specify short or long notation for hex colors. ```css a { color: #fff } /** ↑ * This hex color */ ``` The [`fix` option](../../../docs/user-guide/options.md#fix) can automatically fix all of the problems reported by this rule. The [`message` secondary option](../../../docs/user-guide/configure.md#message) can accept the arguments of this rule. ## Options `string`: `"short"|"long"` ### `"short"` The following patterns are considered problems: ```css a { color: #ffffff; } ``` ```css a { color: #ffffffaa; } ``` The following patterns are _not_ considered problems: ```css a { color: #fff; } ``` ```css a { color: #fffa; } ``` ```css a { color: #a4a4a4; } ``` ### `"long"` The following patterns are considered problems: ```css a { color: #fff; } ``` ```css a { color: #fffa; } ``` The following patterns are _not_ considered problems: ```css a { color: #ffffff; } ``` ```css a { color: #ffffffaa; } ```