2024-01-29 09:26:07 +08:00
|
|
|
import type { ThemeCommonVars } from '../../_styles/common';
|
2024-08-02 18:19:39 +08:00
|
|
|
import type { Theme } from '../../_mixins/use-theme';
|
|
|
|
declare function self(vars: ThemeCommonVars): {
|
2024-01-29 09:26:07 +08:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
export type CodeThemeVars = ReturnType<typeof self>;
|
|
|
|
declare const codeLight: Theme<'Code', CodeThemeVars>;
|
|
|
|
export default codeLight;
|
|
|
|
export type CodeTheme = typeof codeLight;
|