2024-08-02 18:19:39 +08:00

39 lines
1.2 KiB
TypeScript

import { type ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins/use-theme';
export declare function self(vars: ThemeCommonVars): {
lineHeight: string;
fontSizeSmall: string;
fontSizeMedium: string;
fontSizeLarge: string;
titleTextColor: string;
thColor: string;
thColorModal: string;
thColorPopover: string;
thTextColor: string;
thFontWeight: string;
tdTextColor: string;
tdColor: string;
tdColorModal: string;
tdColorPopover: string;
borderColor: string;
borderColorModal: string;
borderColorPopover: string;
borderRadius: string;
thPaddingBorderedSmall: string;
thPaddingBorderedMedium: string;
thPaddingBorderedLarge: string;
thPaddingSmall: string;
thPaddingMedium: string;
thPaddingLarge: string;
tdPaddingBorderedSmall: string;
tdPaddingBorderedMedium: string;
tdPaddingBorderedLarge: string;
tdPaddingSmall: string;
tdPaddingMedium: string;
tdPaddingLarge: string;
};
export type DescriptionsThemeVars = ReturnType<typeof self>;
declare const descriptionsLight: Theme<'Descriptions', DescriptionsThemeVars>;
export default descriptionsLight;
export type DescriptionsTheme = typeof descriptionsLight;