storybook-theme-css-vars
Version:
Theme switcher tool addon that changes the theme using CSS custom properties
10 lines • 330 B
JavaScript
export var ADDON_ID = "storybook/theme-css-vars";
export var TOOL_ID = "".concat(ADDON_ID, "/tool");
export var STORYBOOK_IFRAME_ID = "storybook-preview-iframe";
export var PARAM_THEME = "theme";
export var DEFAULT_PARAMS = {
selector: "body",
dataAttr: "data-color-mode",
nameLightTheme: "light",
nameDarkTheme: "dark"
};