naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
39 lines (38 loc) • 1.27 kB
TypeScript
import type { Theme } from '../../_mixins/use-theme';
import { type ThemeCommonVars } from '../../_styles/common';
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;