hexCase
Control the case of hex color values.
Possible values:
"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 value is "lower".
Example for "lower"
a {
background: #fff;
}
Example for "upper"
a {
background: #FFF;
}
Example for "ignore"
a {
background: #FfF;
}