Automattic / juice

Juice inlines CSS stylesheets into your HTML source.
MIT License
3.1k stars 220 forks source link

background-color: var(--bgblue); is not supported. #475

Open shuilidy922 opened 7 months ago

shuilidy922 commented 7 months ago

I want to change the background color to blue, but the outputed html is still white:

:root { --bgblue: #013d4c !important; }

html body { background-color: var(--bgblue); }