榆钱落尽槿花稀 5045f05f11 1.修改数字人
2.增加开屏翻书特效
3.增加点击按钮视频弹窗播放视频
2025-04-22 17:18:30 +08:00

19 lines
657 B
TypeScript

import type { Theme } from '../../../_mixins';
import type { ThemeCommonVars } from '../../../_styles/common';
export declare function self(vars: ThemeCommonVars): {
height: string;
width: string;
borderRadius: string;
color: string;
colorHover: string;
railInsetHorizontalBottom: string;
railInsetHorizontalTop: string;
railInsetVerticalRight: string;
railInsetVerticalLeft: string;
railColor: string;
};
export type ScrollbarThemeVars = ReturnType<typeof self>;
declare const scrollbarLight: Theme<'Scrollbar', ScrollbarThemeVars>;
export default scrollbarLight;
export type ScrollbarTheme = typeof scrollbarLight;