当前位置: 软件>JavaScript软件
CSS Colorguard
本文导语: CSS Colorguard 是一个 Node.js 扩展,用来分析CSS并标出不必要的接近的颜色值冗余 示例代码: var colorguard = require('colorguard'); var fs = require('fs'); var css = fs.readFileSync('./file.css', 'utf8'); var output = colorguard.inspect(css, { // 0 ...
CSS Colorguard 是一个 Node.js 扩展,用来分析CSS并标出不必要的接近的颜色值冗余
示例代码:
var colorguard = require('colorguard'); var fs = require('fs'); var css = fs.readFileSync('./file.css', 'utf8'); var output = colorguard.inspect(css, { // 0 through 100. Lower is more similar. Anything below 3 warns you. // 3 is the default threshold, but that's mostly personal opinion threshold: 3, // This color is just ignored entirely (use with caution) ignore: ["#030303"], // These color combinations are ignored (usually use this) whitelist: [["#000000", "#010101"]] });
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。