warn
color-namedColors must never be named.
Examples
❌ Incorrect
a {
color: black;
}
a {
color: white;
}
✅ Correct
a {
color: #000000;
}
a {
color: $blue;
}
Colors must never be named.
❌ Incorrect
a {
color: black;
}
a {
color: white;
}
✅ Correct
a {
color: #000000;
}
a {
color: $blue;
}