Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 544 Bytes

README.md

File metadata and controls

51 lines (36 loc) · 544 Bytes

color-no-hex

Disallow hex colors.

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

选项

true

以下模式被视为违规:

a { color: #000; }
a { color: #fff1aa; }
a { color: #123456aa; }

Hex values that are not valid also cause violations:

a { color: #foobar; }
a { color: #0000000000000000; }

以下模式被视为违规:

a { color: black; }
a { color: rgb(0, 0, 0); }
a { color: rgba(0, 0, 0, 1); }