@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
78 lines (75 loc) • 1.84 kB
TypeScript
import constants from '@snowball-tech/design-tokens/dist/web/typescript/constants';
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;
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 };