@specialdoom/solid-rev-kit
Version:
RevKit UI implementation for SolidJS
20 lines (19 loc) • 391 B
TypeScript
export type Colors = {
accent: string;
warning: string;
success: string;
error: string;
primary: string;
secondary: string;
muted: string;
bright: string;
shade: string;
tint: string;
dark: string;
strawberry: string;
blueberry: string;
};
export type Theme = {
colors: Colors;
};
export declare const theme: Theme;