warn
color-hex-lengthForces the length of hex codes used in styles to be long notation rather than short.
Examples
❌ Incorrect
a {
color: #fff;
}
a {
color: #fffa;
}
✅ Correct
a {
color: #ffffff;
}
a {
color: #ffffaa;
}
Forces the length of hex codes used in styles to be long notation rather than short.
❌ Incorrect
a {
color: #fff;
}
a {
color: #fffa;
}
✅ Correct
a {
color: #ffffff;
}
a {
color: #ffffaa;
}