2024-01-29 09:26:07 +08:00

20 lines
655 B
TypeScript

import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
export declare const 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;