We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PostCSS is not about writing CSS4 code. Many PostCSS users didn’t use cssnext.
This is why PostCSS plugins should not provide mixins or variables.
The correct PostCSS way is a PostCSS plugin, which will replace antiquebrass right in CSS to #cd9575. This plugin will be very easy:
antiquebrass
#cd9575
var postcss = require('postcss'); module.exports = postcss.plugin('postcss-crayon', function () { return function(css) { css.eachDecl(function (decl) { decl.value = replaceColors(decl.value); }); }; });
Check put also postcss-brand-colors.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
PostCSS is not about writing CSS4 code. Many PostCSS users didn’t use cssnext.
This is why PostCSS plugins should not provide mixins or variables.
The correct PostCSS way is a PostCSS plugin, which will replace
antiquebrass
right in CSS to#cd9575
. This plugin will be very easy:Check put also postcss-brand-colors.
The text was updated successfully, but these errors were encountered: