naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
21 lines (20 loc) • 650 B
TypeScript
import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
export declare function self(vars: ThemeCommonVars): {
textColor: string;
color: string;
colorHover: string;
colorModal: string;
colorHoverModal: string;
colorPopover: string;
colorHoverPopover: string;
borderColor: string;
borderColorModal: string;
borderColorPopover: string;
borderRadius: string;
fontSize: string;
};
export type ListThemeVars = ReturnType<typeof self>;
declare const listLight: Theme<'List', ListThemeVars>;
export default listLight;
export type ListTheme = typeof listLight;