UNPKG

@snowball-tech/fractal

Version:

Fractal's (Snowball's design system) React component library based on RadixUI and TailwindCSS

79 lines (78 loc) 1.81 kB
import constants from "@snowball-tech/design-tokens/dist/web/typescript/constants.js"; //#region src/constants.d.ts declare const Breakpoints: typeof constants.breakpoints; declare const PREFIX = "fractal"; declare const LIGHT_BG_COLORS_CLASSNAMES: { blue: string; green: string; pink: string; purple: string; white: string; yellow: string; error: string; success: string; warning: string; }; declare const MEDIUM_BG_COLORS_CLASSNAMES: { blue: string; green: string; pink: string; purple: string; white: string; yellow: string; error: string; success: string; warning: string; }; declare const DARK_BG_COLORS_CLASSNAMES: { blue: string; green: string; pink: string; purple: string; white: string; yellow: string; error: string; success: string; warning: string; }; declare const LIGHT_FG_COLORS_CLASSNAMES: { blue: string; green: string; pink: string; purple: string; white: string; yellow: string; error: string; success: string; warning: string; }; declare const MEDIUM_FG_COLORS_CLASSNAMES: { blue: string; green: string; pink: string; purple: string; white: string; yellow: string; error: string; success: string; warning: string; }; declare const DARK_FG_COLORS_CLASSNAMES: { blue: string; green: string; pink: string; purple: string; white: string; yellow: string; error: string; success: string; warning: string; }; declare enum Themes { Dark = "dark", Light = "light" } declare const DEFAULT_THEME = Themes.Light; //#endregion export { Breakpoints, DARK_BG_COLORS_CLASSNAMES, DARK_FG_COLORS_CLASSNAMES, DEFAULT_THEME, LIGHT_BG_COLORS_CLASSNAMES, LIGHT_FG_COLORS_CLASSNAMES, MEDIUM_BG_COLORS_CLASSNAMES, MEDIUM_FG_COLORS_CLASSNAMES, PREFIX, Themes }; //# sourceMappingURL=constants.d.ts.map