parent
e9b0a0339f
commit
0b2c9d4e35
2 changed files with 20 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||||||
|
import { DefaultTheme } from 'styled-components'; |
||||||
|
|
||||||
|
const DEFAULT_THEME: Readonly<DefaultTheme> = { |
||||||
|
colors: { |
||||||
|
primary: '#f2f2f2', |
||||||
|
secondary: '#343434', |
||||||
|
}, |
||||||
|
}; |
||||||
|
|
||||||
|
export default DEFAULT_THEME; |
@ -0,0 +1,10 @@ |
|||||||
|
import 'styled-components'; |
||||||
|
|
||||||
|
declare module 'styled-components' { |
||||||
|
export interface DefaultTheme { |
||||||
|
colors: { |
||||||
|
primary: string; |
||||||
|
secondary: string; |
||||||
|
}; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue