criticalCSS
criticalCSS copied to clipboard
Hex colours are rewritten as RBG colours
article { background-color: #fff; }
becomes
article{ background-color: rgb(255, 255, 255); }
Can it be added as an option to retain the HEX values?