//#region src/utils/constants.d.ts declare const FONT_SIZES: { readonly xs: "0.75rem"; readonly sm: "0.875rem"; readonly md: "1rem"; readonly lg: "1.125rem"; readonly xl: "1.25rem"; }; declare const LINE_HEIGHTS: { readonly xs: "1rem"; readonly sm: "1.25rem"; readonly md: "1.5rem"; readonly lg: "1.75rem"; readonly xl: "2rem"; }; declare const FONT_FAMILY = "ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\""; declare const PRIMARY_FONT_COLORS: { readonly dark: "white"; readonly light: "black"; }; declare const SECONDARY_FONT_COLORS: { readonly dark: "#a8a8a8"; readonly light: "#737373"; }; declare const SELECTED_BACKGROUND_COLORS: { readonly dark: "rgba(255, 255, 255, 0.1)"; readonly light: "rgba(0, 0, 0, 0.04)"; }; declare const LINK_COLORS: { readonly dark: "#fff"; readonly light: "#000"; }; declare const SHADOW = "0 1px 2px 0 rgba(0, 0, 0, 0.05)"; declare const DEFAULT_THEME: { readonly light: { readonly background: "hsl(0 0% 100%)"; readonly foreground: "hsl(240 10% 3.9%)"; readonly card: "hsl(0 0% 100%)"; readonly cardForeground: "hsl(240 10% 3.9%)"; readonly popover: "hsl(0 0% 100%)"; readonly popoverForeground: "hsl(240 10% 3.9%)"; readonly primary: "hsl(240 5.9% 10%)"; readonly primaryForeground: "hsl(0 0% 98%)"; readonly secondary: "hsl(240 4.8% 95.9%)"; readonly secondaryForeground: "hsl(240 5.9% 10%)"; readonly muted: "hsl(240 4.8% 95.9%)"; readonly mutedForeground: "hsl(240 3.8% 46.1%)"; readonly accent: "hsl(240 4.8% 95.9%)"; readonly accentForeground: "hsl(240 5.9% 10%)"; readonly destructive: "hsl(0 84.2% 60.2%)"; readonly destructiveForeground: "hsl(0 0% 98%)"; readonly border: "hsl(240 5.9% 90%)"; readonly input: "hsl(240 5.9% 90%)"; readonly ring: "hsl(240 10% 3.9%)"; }; readonly dark: { readonly background: "hsl(240 10% 3.9%)"; readonly foreground: "hsl(0 0% 98%)"; readonly card: "hsl(240 10% 3.9%)"; readonly cardForeground: "hsl(0 0% 98%)"; readonly popover: "hsl(240 10% 3.9%)"; readonly popoverForeground: "hsl(0 0% 98%)"; readonly primary: "hsl(0 0% 98%)"; readonly primaryForeground: "hsl(240 5.9% 10%)"; readonly secondary: "hsl(240 3.7% 15.9%)"; readonly secondaryForeground: "hsl(0 0% 98%)"; readonly muted: "hsl(240 3.7% 15.9%)"; readonly mutedForeground: "hsl(240 5% 64.9%)"; readonly accent: "hsl(240 3.7% 15.9%)"; readonly accentForeground: "hsl(0 0% 98%)"; readonly destructive: "hsl(0 62.8% 50%)"; readonly destructiveForeground: "hsl(0 0% 98%)"; readonly border: "hsl(240 3.7% 15.9%)"; readonly input: "hsl(240 3.7% 15.9%)"; readonly ring: "hsl(240 4.9% 83.9%)"; }; readonly radius: "0.5rem"; }; //#endregion export { DEFAULT_THEME, FONT_FAMILY, FONT_SIZES, LINE_HEIGHTS, LINK_COLORS, PRIMARY_FONT_COLORS, SECONDARY_FONT_COLORS, SELECTED_BACKGROUND_COLORS, SHADOW }; //# sourceMappingURL=constants.d.ts.map