64 lines
1.8 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
bodyPadding: string;
2024-08-02 18:19:39 +08:00
borderRadius: string;
2024-01-29 09:26:07 +08:00
headerPadding: string;
footerPadding: string;
color: string;
textColor: string;
titleTextColor: string;
titleFontSize: string;
titleFontWeight: string;
boxShadow: string;
lineHeight: string;
headerBorderBottom: string;
footerBorderTop: string;
closeIconColor: string;
closeIconColorHover: string;
closeIconColorPressed: string;
closeSize: string;
closeIconSize: string;
closeColorHover: string;
closeColorPressed: string;
closeBorderRadius: string;
resizableTriggerColorHover: string;
};
export type DrawerThemeVars = ReturnType<typeof self>;
declare const drawerLight: import("../../_mixins").Theme<"Drawer", {
bodyPadding: string;
2024-08-02 18:19:39 +08:00
borderRadius: string;
2024-01-29 09:26:07 +08:00
headerPadding: string;
footerPadding: string;
color: string;
textColor: string;
titleTextColor: string;
titleFontSize: string;
titleFontWeight: string;
boxShadow: string;
lineHeight: string;
headerBorderBottom: string;
footerBorderTop: string;
closeIconColor: string;
closeIconColorHover: string;
closeIconColorPressed: string;
closeSize: string;
closeIconSize: string;
closeColorHover: string;
closeColorPressed: string;
closeBorderRadius: string;
resizableTriggerColorHover: 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 drawerLight;
export type DrawerTheme = typeof drawerLight;