This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Global CSS Variable Object | |
* This object provides a convenient way to manage global CSS variables. | |
* @example globalCssVar.style = "--color: rebeccapurple"; | |
* @example globalCssVar.style = ["--weight: 100;", "--size: 4rem;"]; | |
* | |
* @type {object} | |
* @property {CSSStyleRule} cssRule - CSSStyleRule for managing global Custom Properties. | |
* @property {(type: string) => void} addProp - add global CSS properties | |
* @property {CSSStyleDeclaration} style - Getter/Setter for CSSStyleDeclaration |
OlderNewer