taskcafe/frontend/src/styled.d.ts
2020-12-17 22:51:20 -06:00

32 lines
625 B
TypeScript

// import original module declarations
import 'styled-components';
// and extend them!
declare module 'styled-components' {
export interface DefaultTheme {
borderRadius: {
primary: string;
alternate: string;
};
colors: {
[key: string]: any;
multiColors: string[];
primary: string;
secondary: string;
success: string;
danger: string;
warning: string;
dark: string;
alternate: string;
text: {
primary: string;
secondary: string;
};
bg: {
primary: string;
secondary: string;
};
};
}
}