21 lines
722 B
TypeScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
import type { Theme } from '../../_mixins';
import type { ThemeCommonVars } from '../../_styles/common';
2024-08-02 18:19:39 +08:00
declare function self(vars: ThemeCommonVars): {
2024-01-29 09:26:07 +08:00
fontWeight: string;
rotate: string;
colorStartPrimary: string;
colorEndPrimary: string;
colorStartInfo: string;
colorEndInfo: string;
colorStartWarning: string;
colorEndWarning: string;
colorStartError: string;
colorEndError: string;
colorStartSuccess: string;
colorEndSuccess: string;
};
export type GradientTextThemeVars = ReturnType<typeof self>;
declare const gradientTextLight: Theme<'GradientText', GradientTextThemeVars>;
export default gradientTextLight;
export type GradientTextTheme = typeof gradientTextLight;