@wordpress/style-engine
Version:
A suite of parsers and compilers for WordPress styles.
19 lines (18 loc) • 414 B
JavaScript
// packages/style-engine/src/styles/color/background.ts
import { generateRule } from "../utils";
var background = {
name: "background",
generate: (style, options) => {
return generateRule(
style,
options,
["color", "background"],
"backgroundColor"
);
}
};
var background_default = background;
export {
background_default as default
};
//# sourceMappingURL=background.js.map