naive-ui
Version:
A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast
32 lines (31 loc) • 970 B
TypeScript
import type { Theme } from '../../_mixins';
import type { ThemeCommonVars } from '../../_styles/common';
export declare function self(vars: ThemeCommonVars): {
activeColors: string[];
borderRadius: string;
borderColor: string;
textColor: string;
mininumColor: string;
fontWeight: string;
loadingColorStart: string;
loadingColorEnd: string;
rectSizeSmall: string;
rectSizeMedium: string;
rectSizeLarge: string;
borderRadiusSmall: string;
borderRadiusMedium: string;
borderRadiusLarge: string;
xGapSmall: string;
xGapMedium: string;
xGapLarge: string;
yGapSmall: string;
yGapMedium: string;
yGapLarge: string;
fontSizeSmall: string;
fontSizeMedium: string;
fontSizeLarge: string;
};
export type HeatmapThemeVars = ReturnType<typeof self>;
declare const heatmapLight: Theme<'Heatmap', HeatmapThemeVars>;
export default heatmapLight;
export type HeatmapTheme = typeof heatmapLight;