A Mimosa module to detect when colors in your CSS are closer than they ought to be
npm install mimosa-css-colorguardmimosa-css-colorguard
===========
This module will run css-colorguard over your compiled/copied CSS files.
For more about Mimosa, check out its website.
Note: While Mimosa version 2.2.16 isn't required, it is recommended as the minimum version of Mimosa for this module.
Add 'css-colorguard' to your list of modules. That's all! Mimosa will install the module for you when you start mimosa watch or mimosa build.
This module will run css-colorguard just before it writes any of your non-vendor CSS files. Any warnings will be written to the console.
``javascript`
colorguard: {
exclude:[],
vendor: false
options : {
threshold: 3,
ignore:[],
whitelist: []
}
}
* exclude: array of strings or regexes that match files to not colorguard, strings are paths that can be relative to the watch.sourceDir or absolute.vendor
* : whether or not to colorguard vendor filesoptions`: Pass-through options for css-colorguard. Check out that documentation for more.
*