main-site/styled.d.ts

20 lines
422 B
TypeScript

import 'styled-components'
declare module 'styled-components' {
export interface DefaultTheme {
themeName: string,
themeId: number,
backgroundImage?: string,
backgroundOffset?: string,
colors: {
background: string,
backgroundAlt?: string,
primary: string,
secondary: string,
text?: string,
online: string,
loading: string,
offline: string,
}
}
}