rules.scsslint.HexValidation.html Maven / Gradle / Ivy
Details
Ensure hexadecimal colors are valid (either three or six digits).
Bad
p {
background: #ab; // Clearly a typo
}
Good
p {
background: #abc;
}
Details
Ensure hexadecimal colors are valid (either three or six digits).
Bad
p {
background: #ab; // Clearly a typo
}
Good
p {
background: #abc;
}