2022-12-14 18:35:27 +00:00
|
|
|
import 'styled-components'
|
|
|
|
|
|
|
|
declare module 'styled-components' {
|
|
|
|
export interface DefaultTheme {
|
2022-12-15 20:23:45 +00:00
|
|
|
themeName: string,
|
2022-12-14 18:35:27 +00:00
|
|
|
themeId: number,
|
|
|
|
colors: {
|
|
|
|
background: string,
|
2022-12-15 20:23:45 +00:00
|
|
|
primary: string,
|
|
|
|
secondary: string,
|
2022-12-15 22:20:26 +00:00
|
|
|
online: string,
|
|
|
|
loading: string,
|
|
|
|
offline: string,
|
2022-12-14 18:35:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|