46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
|
import type { ThemeCommonVars } from '../../_styles/common';
|
||
|
import { type Theme } from '../../_mixins/use-theme';
|
||
|
declare const self: (vars: ThemeCommonVars) => {
|
||
|
labelLineHeight: string;
|
||
|
buttonHeightSmall: string;
|
||
|
buttonHeightMedium: string;
|
||
|
buttonHeightLarge: string;
|
||
|
fontSizeSmall: string;
|
||
|
fontSizeMedium: string;
|
||
|
fontSizeLarge: string;
|
||
|
boxShadow: string;
|
||
|
boxShadowActive: string;
|
||
|
boxShadowFocus: string;
|
||
|
boxShadowHover: string;
|
||
|
boxShadowDisabled: string;
|
||
|
color: string;
|
||
|
colorDisabled: string;
|
||
|
colorActive: string;
|
||
|
textColor: string;
|
||
|
textColorDisabled: string;
|
||
|
dotColorActive: string;
|
||
|
dotColorDisabled: string;
|
||
|
buttonBorderColor: string;
|
||
|
buttonBorderColorActive: string;
|
||
|
buttonBorderColorHover: string;
|
||
|
buttonColor: string;
|
||
|
buttonColorActive: string;
|
||
|
buttonTextColor: string;
|
||
|
buttonTextColorActive: string;
|
||
|
buttonTextColorHover: string;
|
||
|
opacityDisabled: string;
|
||
|
buttonBoxShadowFocus: string;
|
||
|
buttonBoxShadowHover: string;
|
||
|
buttonBoxShadow: string;
|
||
|
buttonBorderRadius: string;
|
||
|
radioSizeSmall: string;
|
||
|
radioSizeMedium: string;
|
||
|
radioSizeLarge: string;
|
||
|
labelPadding: string;
|
||
|
labelFontWeight: string;
|
||
|
};
|
||
|
export type RadioThemeVars = ReturnType<typeof self>;
|
||
|
declare const radioLight: Theme<'Radio', RadioThemeVars>;
|
||
|
export default radioLight;
|
||
|
export type RadioTheme = typeof radioLight;
|