PostCSS plugin that lets you write '!muy-importante' instead of '!important'.
.foo {
color: red !muy-importante;
}
.foo {
color: red !important;
}
postcss([require("postcss-muy-importante")]);
See PostCSS docs for examples for your environment.