taskcafe/frontend/src/styled.d.ts

32 lines
625 B
TypeScript
Raw Normal View History

// 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;
2020-12-18 00:13:34 +01:00
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;
};
};
}
}