21e613891e
Includes changes due to NextJS version bump and attempts at storing theme via cookie
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
import 'styled-components'
|
|
|
|
declare module 'styled-components' {
|
|
export interface DefaultTheme {
|
|
themeId: number,
|
|
colors: {
|
|
background: string,
|
|
primary: string
|
|
secondary: string
|
|
}
|
|
}
|
|
} |