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

20 lines
654 B
TypeScript

import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
export declare function self(vars: ThemeCommonVars): {
borderRadius: string;
railColor: string;
railColorActive: string;
linkColor: string;
linkTextColor: string;
linkTextColorHover: string;
linkTextColorPressed: string;
linkTextColorActive: string;
linkFontSize: string;
linkPadding: string;
railWidth: string;
};
export type AnchorThemeVars = ReturnType<typeof self>;
declare const anchorLight: Theme<'Anchor', AnchorThemeVars>;
export default anchorLight;
export type AnchorTheme = typeof anchorLight;