Details

Ensure hexadecimal colors are valid (either three or six digits).

Bad

p {
background: #ab; // Clearly a typo
}

Good

p {
background: #abc;
}