color keywords will convert all text
Opened this issue · 0 comments
leeluolee commented
color keywords will convert all text
like
body{
white: white;
}
convert to
body{
#ffffff: #ffffff;
}
The correct result is only convert the value will use for operate color , but not other ident
body{
white: #fff;
}