Disallow hex colors.
禁止使用十六进制颜色。
a { color: #333 }
/** ↑
* These hex colors */
true
The following patterns are considered warnings:
以下模式被认为是个警告:
a { color: #000; }
a { color: #fff1aa; }
a { color: #123456aa; }
Hex values that are not valid also cause warnings:
无效的十六进制色值也会引发警告:
a { color: #foobar; }
a { color: #0000000000000000; }
The following patterns are not considered warnings:
以下模式正常:
a { color: black; }
a { color: rgb(0, 0, 0); }
a { color: rgba(0, 0, 0, 1); }