main-site/styled.d.ts

20 lines
422 B
TypeScript
Raw Normal View History

import 'styled-components'
declare module 'styled-components' {
export interface DefaultTheme {
2022-12-15 20:23:45 +00:00
themeName: string,
themeId: number,
backgroundImage?: string,
2022-12-19 20:51:51 +00:00
backgroundOffset?: string,
colors: {
background: string,
backgroundAlt?: string,
2022-12-15 20:23:45 +00:00
primary: string,
secondary: string,
text?: string,
online: string,
loading: string,
offline: string,
}
}
}