Refrain from using named colors and use hexadecimal notation or functions such as rgb or hsl instead.
rgb
hsl
.mybox { color: red; /* Noncompliant */ }
.mybox { color: #ff0000; } OR .mybox { color: rgba(255, 0, 0, 1); }