@kadconsulting/dry
Version:
KAD Reusable Component Library
13 lines • 541 B
JavaScript
/**
* The theme type is a string enum, because the theme is toggled by adding a class
* to the DOM. This class is used to modify the underlying SCSS variable definitions
* defined in those CSS classes.
*
* To support more themes than this (i.e., color blindness or accessibility themes),
* library consumers will need to use module augmentation. */
export var ThemeTypes;
(function (ThemeTypes) {
ThemeTypes["DARK"] = "dark";
ThemeTypes["LIGHT"] = "light";
})(ThemeTypes || (ThemeTypes = {}));
//# sourceMappingURL=types.js.map