Files
personal-website/styled.d.ts
T
2023-03-19 00:54:54 +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;
};
}
}