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

98 lines
3.3 KiB
TypeScript

import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
export declare function self(vars: ThemeCommonVars): {
colorSegment: string;
tabFontSizeCard: string;
tabTextColorLine: string;
tabTextColorActiveLine: string;
tabTextColorHoverLine: string;
tabTextColorDisabledLine: string;
tabTextColorSegment: string;
tabTextColorActiveSegment: string;
tabTextColorHoverSegment: string;
tabTextColorDisabledSegment: string;
tabTextColorBar: string;
tabTextColorActiveBar: string;
tabTextColorHoverBar: string;
tabTextColorDisabledBar: string;
tabTextColorCard: string;
tabTextColorHoverCard: string;
tabTextColorActiveCard: string;
tabTextColorDisabledCard: string;
barColor: string;
closeIconColor: string;
closeIconColorHover: string;
closeIconColorPressed: string;
closeColorHover: string;
closeColorPressed: string;
closeBorderRadius: string;
tabColor: string;
tabColorSegment: string;
tabBorderColor: string;
tabFontWeightActive: string;
tabFontWeight: string;
tabBorderRadius: string;
paneTextColor: string;
fontWeightStrong: string;
tabFontSizeSmall: string;
tabFontSizeMedium: string;
tabFontSizeLarge: string;
tabGapSmallLine: string;
tabGapMediumLine: string;
tabGapLargeLine: string;
tabGapSmallLineVertical: string;
tabGapMediumLineVertical: string;
tabGapLargeLineVertical: string;
tabPaddingSmallLine: string;
tabPaddingMediumLine: string;
tabPaddingLargeLine: string;
tabPaddingVerticalSmallLine: string;
tabPaddingVerticalMediumLine: string;
tabPaddingVerticalLargeLine: string;
tabGapSmallBar: string;
tabGapMediumBar: string;
tabGapLargeBar: string;
tabGapSmallBarVertical: string;
tabGapMediumBarVertical: string;
tabGapLargeBarVertical: string;
tabPaddingSmallBar: string;
tabPaddingMediumBar: string;
tabPaddingLargeBar: string;
tabPaddingVerticalSmallBar: string;
tabPaddingVerticalMediumBar: string;
tabPaddingVerticalLargeBar: string;
tabGapSmallCard: string;
tabGapMediumCard: string;
tabGapLargeCard: string;
tabGapSmallCardVertical: string;
tabGapMediumCardVertical: string;
tabGapLargeCardVertical: string;
tabPaddingSmallCard: string;
tabPaddingMediumCard: string;
tabPaddingLargeCard: string;
tabPaddingSmallSegment: string;
tabPaddingMediumSegment: string;
tabPaddingLargeSegment: string;
tabPaddingVerticalLargeSegment: string;
tabPaddingVerticalSmallCard: string;
tabPaddingVerticalMediumCard: string;
tabPaddingVerticalLargeCard: string;
tabPaddingVerticalSmallSegment: string;
tabPaddingVerticalMediumSegment: string;
tabGapSmallSegment: string;
tabGapMediumSegment: string;
tabGapLargeSegment: string;
tabGapSmallSegmentVertical: string;
tabGapMediumSegmentVertical: string;
tabGapLargeSegmentVertical: string;
panePaddingSmall: string;
panePaddingMedium: string;
panePaddingLarge: string;
closeSize: string;
closeIconSize: string;
};
export type TabsThemeVars = ReturnType<typeof self>;
declare const tabsLight: Theme<'Tabs', TabsThemeVars>;
export default tabsLight;
export type TabsTheme = typeof tabsLight;