mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-02 02:10:27 +00:00
17 lines
240 B
TypeScript
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;
|
|
};
|
|
};
|
|
}
|
|
}
|