amotify
Version:
UI Component for React,NextJS,esbuild
22 lines (21 loc) • 509 B
TypeScript
import { ThemeColor } from '../@declares';
export declare const ColorObjects: {
key: ThemeColor;
isBrand: boolean;
isAvocado: boolean;
}[];
export declare const SetThemeColorTag: () => void;
declare const DarkmodeColors: {
light: string;
dark: string;
dim: string;
auto(): string;
};
declare const ThemeColors: {
[key in ThemeColor]: {
alfa(alfa?: number): string;
isBrand: boolean;
isAvocado: boolean;
};
};
export { DarkmodeColors, ThemeColors };