@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
32 lines • 1 kB
text/typescript
//#region src/styles/customTheme.d.ts
declare const primaryColors: {
blue: string;
cyan: string;
geekblue: string;
gold: string;
green: string;
lime: string;
magenta: string;
orange: string;
purple: string;
red: string;
volcano: string;
yellow: string;
};
type PrimaryColorsObj = typeof primaryColors;
type PrimaryColors = keyof PrimaryColorsObj;
declare const primaryColorsSwatches: string[];
declare const neutralColors: {
mauve: string;
olive: string;
sage: string;
sand: string;
slate: string;
};
declare const neutralColorsSwatches: string[];
type NeutralColorsObj = typeof neutralColors;
type NeutralColors = keyof NeutralColorsObj;
declare const findCustomThemeName: (type: "primary" | "neutral", value: string) => string | undefined;
//#endregion
export { NeutralColors, NeutralColorsObj, PrimaryColors, PrimaryColorsObj, findCustomThemeName, neutralColors, neutralColorsSwatches, primaryColors, primaryColorsSwatches };
//# sourceMappingURL=customTheme.d.mts.map