Rule no-color-keywords
will enforce the use of hexadecimal color values rather than literals.
When enabled the following are allowed:
$new-red: #ff0000;
.foo {
color: #ff0000;
}
When enabled the following are disallowed:
$new-red: red;
.foo {
color: red;
}