Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 764 Bytes

README.md

File metadata and controls

51 lines (34 loc) · 764 Bytes

color-hex-case

Specify lowercase or uppercase for hex colors.

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

The --fix option on the command line can automatically fix all of the problems reported by this rule.

Options

string: "lower"|"upper"

"lower"

The following patterns are considered violations:

a { color: #FFF; }

The following patterns are not considered violations:

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

"upper"

The following patterns are considered violations:

a { color: #fff; }

The following patterns are not considered violations:

a { color: #000; }
a { color: #FFF; }