45 lines
1.3 KiB
TypeScript
Raw Permalink Normal View History

2024-01-29 09:26:07 +08:00
import type { ThemeCommonVars } from '../../_styles/common';
2024-08-02 18:19:39 +08:00
declare function self(vars: ThemeCommonVars): {
2024-01-29 09:26:07 +08:00
loaderFontSize: string;
loaderTextColor: string;
loaderColor: string;
loaderBorder: string;
loadingColor: string;
};
export type LogThemeVars = ReturnType<typeof self>;
declare const logLight: import("../../_mixins").Theme<"Log", {
loaderFontSize: string;
loaderTextColor: string;
loaderColor: string;
loaderBorder: string;
loadingColor: string;
}, {
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2024-08-02 18:19:39 +08:00
height: string;
width: string;
borderRadius: string;
2024-01-29 09:26:07 +08:00
color: string;
colorHover: string;
2024-08-02 18:19:39 +08:00
railInsetHorizontal: string;
railInsetVertical: string;
railColor: string;
2024-01-29 09:26:07 +08:00
}, any>;
Code: import("../../_mixins").Theme<"Code", {
textColor: string;
fontSize: string;
fontWeightStrong: string;
'mono-3': string;
'hue-1': string;
'hue-2': string;
'hue-3': string;
'hue-4': string;
'hue-5': string;
'hue-5-2': string;
'hue-6': string;
'hue-6-2': string;
lineNumberTextColor: string;
}, any>;
}>;
export default logLight;
export type LogTheme = typeof logLight;