fix: use simplified color variable
This commit is contained in:
parent
925a991177
commit
0940b7076a
1 changed files with 11 additions and 11 deletions
|
@ -31,35 +31,35 @@ export default defineConfig({
|
||||||
wrap: true,
|
wrap: true,
|
||||||
collapseStyle: 'collapsible-auto',
|
collapseStyle: 'collapsible-auto',
|
||||||
overridesByLang: {
|
overridesByLang: {
|
||||||
'ansi,bash,bat,batch,cmd,console,powershell,ps,ps1,psd1,psm1,sh,shell,shellscript,shellsession,zsh,text':
|
'ansi,bat,bash,batch,cmd,console,powershell,ps,ps1,psd1,psm1,sh,shell,shellscript,shellsession,text,zsh':
|
||||||
{
|
{
|
||||||
showLineNumbers: false,
|
showLineNumbers: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
styleOverrides: {
|
styleOverrides: {
|
||||||
|
borderColor: 'var(--border)',
|
||||||
codeFontFamily: 'var(--font-mono)',
|
codeFontFamily: 'var(--font-mono)',
|
||||||
uiFontFamily: 'var(--font-sans)',
|
|
||||||
borderColor: 'var(--color-border)',
|
|
||||||
codeBackground:
|
codeBackground:
|
||||||
'color-mix(in oklab, var(--color-secondary) 25%, transparent)',
|
'color-mix(in oklab, var(--secondary) 25%, transparent)',
|
||||||
frames: {
|
frames: {
|
||||||
editorActiveTabBackground:
|
editorActiveTabBackground:
|
||||||
'color-mix(in oklab, var(--color-secondary) 25%, transparent)',
|
'color-mix(in oklab, var(--secondary) 25%, transparent)',
|
||||||
editorActiveTabIndicatorBottomColor: 'transparent',
|
editorActiveTabIndicatorBottomColor: 'transparent',
|
||||||
editorActiveTabIndicatorTopColor: 'transparent',
|
editorActiveTabIndicatorTopColor: 'transparent',
|
||||||
editorTabBarBorderBottomColor: 'transparent',
|
|
||||||
editorTabBarBackground: 'transparent',
|
editorTabBarBackground: 'transparent',
|
||||||
terminalTitlebarBorderBottomColor: 'transparent',
|
editorTabBarBorderBottomColor: 'transparent',
|
||||||
terminalTitlebarBackground: 'transparent',
|
|
||||||
frameBoxShadowCssValue: 'none',
|
frameBoxShadowCssValue: 'none',
|
||||||
terminalBackground:
|
terminalBackground:
|
||||||
'color-mix(in oklab, var(--color-secondary) 25%, transparent)',
|
'color-mix(in oklab, var(--secondary) 25%, transparent)',
|
||||||
terminalTitlebarForeground: 'var(--color-muted-foreground)',
|
terminalTitlebarBackground: 'transparent',
|
||||||
|
terminalTitlebarBorderBottomColor: 'transparent',
|
||||||
|
terminalTitlebarForeground: 'var(--muted-foreground)',
|
||||||
},
|
},
|
||||||
lineNumbers: {
|
lineNumbers: {
|
||||||
foreground: 'var(--color-muted-foreground)',
|
foreground: 'var(--muted-foreground)',
|
||||||
},
|
},
|
||||||
|
uiFontFamily: 'var(--font-sans)',
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
mdx(),
|
mdx(),
|
||||||
|
|
Loading…
Add table
Reference in a new issue