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

21 lines
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;