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

21 lines
722 B
TypeScript

import type { Theme } from '../../_mixins';
import type { ThemeCommonVars } from '../../_styles/common';
declare function self(vars: ThemeCommonVars): {
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;