PostCSS plugin for very important css.
body {
color: red;
}
body {
color: blue !vimportant;
}
body {
color: blue !vvvvvvvvvvvvvimportant;
}
body {
color: green !important;
}
postcss([ require('postcss-v-important') ])
Outputs...
body {
color: red;
}
:root body {
color: blue !important;
}
:root:root:root:root:root:root:root:root:root:root:root:root:root body {
color: orange !important;
}
body {
color: green !important;
}