@kahi-ui/framework
Version:
Straight-forward Svelte UI for the Web
19 lines (18 loc) • 700 B
JavaScript
/**
* Represents the tiers of palettes tokens that can be applied to Framework Components
*/
export var TOKENS_PALETTE;
(function (TOKENS_PALETTE) {
TOKENS_PALETTE["auto"] = "auto";
TOKENS_PALETTE["inverse"] = "inverse";
TOKENS_PALETTE["inherit"] = "inherit";
TOKENS_PALETTE["accent"] = "accent";
TOKENS_PALETTE["neutral"] = "neutral";
TOKENS_PALETTE["off"] = "off";
TOKENS_PALETTE["dark"] = "dark";
TOKENS_PALETTE["light"] = "light";
TOKENS_PALETTE["alert"] = "alert";
TOKENS_PALETTE["affirmative"] = "affirmative";
TOKENS_PALETTE["informative"] = "informative";
TOKENS_PALETTE["negative"] = "negative";
})(TOKENS_PALETTE || (TOKENS_PALETTE = {}));