17 lines
459 B
TypeScript
17 lines
459 B
TypeScript
|
export type ThemeTypes = {
|
||
|
elColorPrimary?: string
|
||
|
leftMenuBorderColor?: string
|
||
|
leftMenuBgColor?: string
|
||
|
leftMenuBgLightColor?: string
|
||
|
leftMenuBgActiveColor?: string
|
||
|
leftMenuCollapseBgActiveColor?: string
|
||
|
leftMenuTextColor?: string
|
||
|
leftMenuTextActiveColor?: string
|
||
|
logoTitleTextColor?: string
|
||
|
logoBorderColor?: string
|
||
|
topHeaderBgColor?: string
|
||
|
topHeaderTextColor?: string
|
||
|
topHeaderHoverColor?: string
|
||
|
topToolBorderColor?: string
|
||
|
}
|