66 lines
1.9 KiB
TypeScript
66 lines
1.9 KiB
TypeScript
import type { ThemeCommonVars } from '../../_styles/common';
|
|
export declare function self(vars: ThemeCommonVars): {
|
|
bodyPadding: string;
|
|
borderRadius: string;
|
|
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;
|
|
borderRadius: string;
|
|
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", {
|
|
height: string;
|
|
width: string;
|
|
borderRadius: string;
|
|
color: string;
|
|
colorHover: string;
|
|
railInsetHorizontalBottom: string;
|
|
railInsetHorizontalTop: string;
|
|
railInsetVerticalRight: string;
|
|
railInsetVerticalLeft: string;
|
|
railColor: string;
|
|
}, any>;
|
|
}>;
|
|
export default drawerLight;
|
|
export type DrawerTheme = typeof drawerLight;
|