66 lines
2.1 KiB
TypeScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
import type { ThemeCommonVars } from '../../_styles/common';
2024-08-02 18:19:39 +08:00
export declare function self(vars: ThemeCommonVars): {
2024-01-29 09:26:07 +08:00
textColor: string;
textColorInverted: string;
color: string;
colorEmbedded: string;
headerColor: string;
headerColorInverted: string;
footerColor: string;
footerColorInverted: string;
headerBorderColor: string;
headerBorderColorInverted: string;
footerBorderColor: string;
footerBorderColorInverted: string;
siderBorderColor: string;
siderBorderColorInverted: string;
siderColor: string;
siderColorInverted: string;
siderToggleButtonBorder: string;
siderToggleButtonColor: string;
siderToggleButtonIconColor: string;
siderToggleButtonIconColorInverted: string;
siderToggleBarColor: string;
siderToggleBarColorHover: string;
__invertScrollbar: string;
};
export type LayoutThemeVars = ReturnType<typeof self>;
declare const layoutLight: import("../../_mixins").Theme<"Layout", {
textColor: string;
textColorInverted: string;
color: string;
colorEmbedded: string;
headerColor: string;
headerColorInverted: string;
footerColor: string;
footerColorInverted: string;
headerBorderColor: string;
headerBorderColorInverted: string;
footerBorderColor: string;
footerBorderColorInverted: string;
siderBorderColor: string;
siderBorderColorInverted: string;
siderColor: string;
siderColorInverted: string;
siderToggleButtonBorder: string;
siderToggleButtonColor: string;
siderToggleButtonIconColor: string;
siderToggleButtonIconColorInverted: string;
siderToggleBarColor: string;
siderToggleBarColorHover: string;
__invertScrollbar: string;
}, {
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2024-08-02 18:19:39 +08:00
height: string;
width: string;
borderRadius: string;
2024-01-29 09:26:07 +08:00
color: string;
colorHover: string;
2024-08-02 18:19:39 +08:00
railInsetHorizontal: string;
railInsetVertical: string;
railColor: string;
2024-01-29 09:26:07 +08:00
}, any>;
}>;
export default layoutLight;
export type LayoutTheme = typeof layoutLight;