32 lines
970 B
TypeScript
32 lines
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;
|