Pattern: Inconsistent hex color notation
Issue: -
Specify short or long notation for hex colors.
The following patterns are considered violations:
a { color: #ffffff; }
a { color: #ffffffaa; }
The following patterns are not considered violations:
a { color: #fff; }
a { color: #fffa; }
a { color: #a4a4a4; }
The following patterns are considered violations:
a { color: #fff; }
a { color: #fffa; }
The following patterns are not considered violations:
a { color: #ffffff; }
a { color: #ffffffaa; }