37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import type { ThemeCommonVars } from '../../_styles/common';
|
|
import { type Theme } from '../../_mixins';
|
|
declare const self: (vars: ThemeCommonVars) => {
|
|
fontSize: string;
|
|
markFontSize: string;
|
|
railColor: string;
|
|
railColorHover: string;
|
|
fillColor: string;
|
|
fillColorHover: string;
|
|
opacityDisabled: string;
|
|
handleColor: string;
|
|
dotColor: string;
|
|
dotColorModal: string;
|
|
dotColorPopover: string;
|
|
handleBoxShadow: string;
|
|
handleBoxShadowHover: string;
|
|
handleBoxShadowActive: string;
|
|
handleBoxShadowFocus: string;
|
|
indicatorColor: string;
|
|
indicatorBoxShadow: string;
|
|
indicatorTextColor: string;
|
|
indicatorBorderRadius: string;
|
|
dotBorder: string;
|
|
dotBorderActive: string;
|
|
dotBoxShadow: string;
|
|
railHeight: string;
|
|
railWidthVertical: string;
|
|
handleSize: string;
|
|
dotHeight: string;
|
|
dotWidth: string;
|
|
dotBorderRadius: string;
|
|
};
|
|
export type SliderThemeVars = ReturnType<typeof self>;
|
|
declare const sliderLight: Theme<'Slider', SliderThemeVars>;
|
|
export default sliderLight;
|
|
export type SliderTheme = typeof sliderLight;
|