39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
|
import type { ThemeCommonVars } from '../../_styles/common';
|
||
|
import type { Theme } from '../../_mixins';
|
||
|
export declare const self: (vars: ThemeCommonVars) => {
|
||
|
blankHeightSmall: string;
|
||
|
blankHeightMedium: string;
|
||
|
blankHeightLarge: string;
|
||
|
lineHeight: string;
|
||
|
labelTextColor: string;
|
||
|
asteriskColor: string;
|
||
|
feedbackTextColorError: string;
|
||
|
feedbackTextColorWarning: string;
|
||
|
feedbackTextColor: string;
|
||
|
feedbackPadding: string;
|
||
|
feedbackHeightSmall: string;
|
||
|
feedbackHeightMedium: string;
|
||
|
feedbackHeightLarge: string;
|
||
|
feedbackFontSizeSmall: string;
|
||
|
feedbackFontSizeMedium: string;
|
||
|
feedbackFontSizeLarge: string;
|
||
|
labelFontSizeLeftSmall: string;
|
||
|
labelFontSizeLeftMedium: string;
|
||
|
labelFontSizeLeftLarge: string;
|
||
|
labelFontSizeTopSmall: string;
|
||
|
labelFontSizeTopMedium: string;
|
||
|
labelFontSizeTopLarge: string;
|
||
|
labelHeightSmall: string;
|
||
|
labelHeightMedium: string;
|
||
|
labelHeightLarge: string;
|
||
|
labelPaddingVertical: string;
|
||
|
labelPaddingHorizontal: string;
|
||
|
labelTextAlignVertical: string;
|
||
|
labelTextAlignHorizontal: string;
|
||
|
labelFontWeight: string;
|
||
|
};
|
||
|
export type FormThemeVars = ReturnType<typeof self>;
|
||
|
declare const formLight: Theme<'Form', FormThemeVars>;
|
||
|
export default formLight;
|
||
|
export type FormTheme = typeof formLight;
|