@barguide/style-guide
Version:
BarGuide.io | CSS Style Guide
17 lines (16 loc) • 454 B
TypeScript
export interface Theme {
'theme-background': string;
'theme-background-light': string;
'theme-background-lighter': string;
'theme-background-transparent': string;
'theme-border': string;
'theme-border-input': string;
'theme-copy': string;
'theme-copy-light': string;
}
export declare const light: Theme;
export declare const dark: Theme;
export declare const theme: {
dark: Theme;
light: Theme;
};