← Back

color-hex-length warn

Forces 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;
}