Last active
March 15, 2024 08:14
-
-
Save dutchcelt/50bf966ab9ce24ef7f382820ae80e635 to your computer and use it in GitHub Desktop.
Add global CSS custom properties
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 | |
*/ | |
export const globalCssVar = Object.freeze({ | |
// Using IIFE to automatically configure a CSSStyleRule. | |
cssRule: ((css) => ( | |
css.replaceSync(":root{}"), | |
document.adoptedStyleSheets.push(css), | |
css.cssRules[0] // Comma Operator, last value is returned | |
))(new CSSStyleSheet()), | |
addProp(prop) { | |
const [propName, propValue] = prop.replace(/;|\s/gi, "").split(":"); | |
/^--/.test(propName) | |
? this.style.setProperty(propName, propValue) | |
: console.error(`"${propName}" is not a valid Custom Property ident`); | |
}, | |
get style() { | |
return this.cssRule.style; | |
}, | |
set style(properties) { | |
[properties].flat().forEach(this.addProp.bind(this)); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment