mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
18 lines
294 B
TypeScript
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;
|
|
};
|
|
}
|
|
}
|