Shared coding conventions allow teams to collaborate effectively. Writing colors in upper case makes them stand out at such, thereby making the code easier to read.
This rule checks that hexadecimal color definitions are written in upper case.
== Noncompliant Code Example
----
$white = '#ffffff'; // Noncompliant
$dkgray = '#006400';
$aqua = '#00ffff'; // Noncompliant
== Compliant Solution
$white = '#FFFFFF'; // Compliant
$aqua = '#00FFFF'; // Compliant
ifdef::env-github,rspecator-view[]
'''
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]