← Back

color-named warn

Colors must never be named.

Examples

❌  Incorrect

a { 
    color: black; 
}

a {
    color: white; 
}

✅  Correct

a { 
    color: #000000; 
}

a {
    color: $blue; 
}