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
|
|
|
export declare function self(vars: ThemeCommonVars): {
|
2024-01-29 09:26:07 +08:00
|
|
|
color: string;
|
|
|
|
opacity1Depth: string;
|
|
|
|
opacity2Depth: string;
|
|
|
|
opacity3Depth: string;
|
|
|
|
opacity4Depth: string;
|
|
|
|
opacity5Depth: string;
|
|
|
|
};
|
|
|
|
export type IconThemeVars = ReturnType<typeof self>;
|
|
|
|
declare const iconLight: Theme<'Icon', IconThemeVars>;
|
|
|
|
export default iconLight;
|
|
|
|
export type IconTheme = typeof iconLight;
|