Files
personal-website/@types/styled.d.ts
T
2021-01-07 14:45:14 +01:00

17 lines
240 B
TypeScript

import 'styled-components';
declare module 'styled-components' {
export interface DefaultTheme {
colors: {
dark: {
background: string;
text: string;
};
light: {
background: string;
text: string;
};
};
}
}