Skip to content

Latest commit

 

History

History
66 lines (48 loc) · 916 Bytes

README.md

File metadata and controls

66 lines (48 loc) · 916 Bytes

color-hex-alpha

Require or disallow alpha channel for hex colors.

a { color: #fffa }
/**            ↑
 * This alpha channel */

Options

string: "always"|"never"

"always"

The following patterns are considered problems:

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

The following patterns are not considered problems:

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

"never"

The following patterns are considered problems:

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

The following patterns are not considered problems:

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