Files
personal-website/styled.d.ts
T
2023-07-01 00:38:49 +01:00

18 lines
294 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;
};
}
}