2024-01-29 09:26:07 +08:00
|
|
|
import type { ThemeCommonVars } from '../../_styles/common';
|
|
|
|
import type { Theme } from '../../_mixins';
|
2024-08-02 18:19:39 +08:00
|
|
|
declare function self(vars: ThemeCommonVars): {
|
2024-01-29 09:26:07 +08:00
|
|
|
color: string;
|
|
|
|
colorInfo: string;
|
|
|
|
colorSuccess: string;
|
|
|
|
colorError: string;
|
|
|
|
colorWarning: string;
|
|
|
|
fontSize: string;
|
|
|
|
fontFamily: string;
|
|
|
|
};
|
|
|
|
export type BadgeThemeVars = ReturnType<typeof self>;
|
|
|
|
declare const badgeLight: Theme<'Badge', BadgeThemeVars>;
|
|
|
|
export default badgeLight;
|
|
|
|
export type BadgeTheme = typeof badgeLight;
|