export { config } from "./config"; export { darkModeConfig } from "./dark-mode-config"; export { highContrastModeConfig } from "./high-contrast-mode-config"; export { darkHighContrastModeConfig } from "./dark-high-contrast-mode-config"; /** * @typedef { | 'blue' | 'red' | 'purple' | 'green' | 'yellow' | 'orange' | 'darkGray' | 'lightGray' } SupportedColors */ /** @type {SupportedColors[]} */ export const SUPPORTED_COLORS: SupportedColors[]; export type SupportedColors = "blue" | "green" | "orange" | "purple" | "red" | "yellow" | "darkGray" | "lightGray"; //# sourceMappingURL=theme.d.ts.map