21 lines
451 B
TypeScript
21 lines
451 B
TypeScript
import 'styled-components'
|
|
|
|
declare module 'styled-components' {
|
|
export interface DefaultTheme {
|
|
themeName: string,
|
|
themeId: number,
|
|
backgroundImage?: string,
|
|
backgroundOffset?: string,
|
|
invertButtons?: boolean,
|
|
colors: {
|
|
background: string,
|
|
backgroundAlt?: string,
|
|
primary: string,
|
|
secondary: string,
|
|
text?: string,
|
|
online: string,
|
|
loading: string,
|
|
offline: string,
|
|
}
|
|
}
|
|
} |