hexCase
Control the case of hex color values.
Possible options:
"lower"
: Hex color values will be converted to lower case."upper"
: Hex color values will be converted to upper case."ignore"
: Hex color values will be kept as-is.
Default option is "lower"
.
Example for "lower"
a {
background: #fff;
}
Example for "upper"
a {
background: #FFF;
}
Example for "ignore"
a {
background: #FfF;
}