Files
personal-website/@types/styled.d.ts
T
2021-09-05 16:44:33 +01:00

18 lines
257 B
TypeScript

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