notes/node_modules/stylelint/lib/rules/color-hex-length/README.md

710 B

color-hex-length

Specify short or long notation for hex colors.

a { color: #fff }
/**        ↑
 * These hex colors */

Options

string: "short"|"long"

"short"

The following patterns are considered warnings:

a { color: #ffffff; }
a { color: #fffffaa; }

The following patterns are not considered warnings:

a { color: #fff; }
a { color: #fffa; }
a { color: #a4a4a4; }

"long"

The following patterns are considered warnings:

a { color: #fff; }
a { color: #fffa; }

The following patterns are not considered warnings:

a { color: #ffffff; }
a { color: #fffffaa; }