Remap CSS rules based on declaration value
npm i remap-css
const remapCss = require("remap-css");
const css = await remapCss([{css: "a {color: red;}"}], {"color: red": "color: blue"});
// a {
// color: blue;
// }
Returns a Promise
that resolves to a CSS string.
-
sources
: Array Array of sources-
source
: Object-
css
: string A CSS string -
prefix
: string A CSS selector to be prefixed to all output rules -
match
: string A array of plain CSS selectors that prevent a prefix addition on exact match
-
-
-
mappings
: Object CSS declaration value-to-value mapping. The key is either a exact match CSS declaration or a special rule starting with$
. The value is the corresponding replacement declaration or a color in the case of a special rule. -
options
: Object-
indentSize
: number Numbers of spaces to indent rules and declarations. Default:2
. -
indentCss
: number Numbers of spaces to indent the output CSS. Default:0
. -
lineLength
: number Number of characters after which to wrap lines. Default:80
. -
ignoreSelectors
: Array of RegExp Regular expressions of selectors to ignore. Default:[]
. -
limitSpecial
: number Maximum amount of iteration per special mappings. Default:25
. -
comments
: boolean Whether to output comments. Default:false
. -
stylistic
: boolean Whether to perform stylistic tweaks on selectors. Default:false
.
-
There are special mapping keys supported to reduce the need for similar border
and background
rules:
-
$border: value
: Variations of border-colors -
$background: value
Variations of background-colors
On special rules, only specify the replacement value alone (not the declaration).
- fetch-css - Extract CSS from websites and browser extensions
© silverwind, distributed under BSD licence