Created
June 6, 2024 21:33
-
-
Save x1unix/79cd8fcedbeda394b8b9542ae31a4a66 to your computer and use it in GitHub Desktop.
CodeMirror VSCode Light Theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { tags as t } from '@lezer/highlight' | |
import { createTheme } from '@uiw/codemirror-themes' | |
export { vscodeDark } from '@uiw/codemirror-theme-vscode' | |
// VSCode light theme based on dark theme from '@uiw/codemirror-theme-vscode'. | |
// See: https://github.com/uiwjs/react-codemirror/blob/master/themes/vscode/src/index.ts | |
export const vscodeLight = createTheme({ | |
theme: 'light', | |
settings: { | |
background: '#ffffff', | |
foreground: '#383a42', | |
caret: '#000', | |
selection: '#add6ff', | |
selectionMatch: '#a8ac94', | |
lineHighlight: '#f0f0f0', | |
gutterBackground: '#fff', | |
gutterForeground: '#237893', | |
gutterActiveForeground: '#0b216f', | |
fontFamily: 'Menlo, Monaco, Consolas, "Andale Mono", "Ubuntu Mono", "Courier New", monospace', | |
}, | |
styles: [ | |
{ | |
tag: [ | |
t.keyword, | |
t.operatorKeyword, | |
t.modifier, | |
t.color, | |
t.constant(t.name), | |
t.standard(t.name), | |
t.standard(t.tagName), | |
t.special(t.brace), | |
t.atom, | |
t.bool, | |
t.special(t.variableName), | |
], | |
color: '#0000ff', | |
}, | |
{ | |
tag: [t.moduleKeyword, t.controlKeyword], | |
color: '#af00db', | |
}, | |
{ | |
tag: [ | |
t.name, | |
t.deleted, | |
t.character, | |
t.macroName, | |
t.propertyName, | |
t.variableName, | |
t.labelName, | |
t.definition(t.name), | |
], | |
color: '#0070c1', | |
}, | |
{ tag: t.heading, fontWeight: 'bold', color: '#0070c1' }, | |
{ | |
tag: [t.typeName, t.className, t.tagName, t.number, t.changed, t.annotation, t.self, t.namespace], | |
color: '#267f99', | |
}, | |
{ | |
tag: [t.function(t.variableName), t.function(t.propertyName)], | |
color: '#795e26', | |
}, | |
{ tag: [t.number], color: '#098658' }, | |
{ | |
tag: [t.operator, t.punctuation, t.separator, t.url, t.escape, t.regexp], | |
color: '#383a42', | |
}, | |
{ | |
tag: [t.regexp], | |
color: '#af00db', | |
}, | |
{ | |
tag: [t.special(t.string), t.processingInstruction, t.string, t.inserted], | |
color: '#a31515', | |
}, | |
{ tag: [t.angleBracket], color: '#383a42' }, | |
{ tag: t.strong, fontWeight: 'bold' }, | |
{ tag: t.emphasis, fontStyle: 'italic' }, | |
{ tag: t.strikethrough, textDecoration: 'line-through' }, | |
{ tag: [t.meta, t.comment], color: '#008000' }, | |
{ tag: t.link, color: '#4078f2', textDecoration: 'underline' }, | |
{ tag: t.invalid, color: '#e45649' }, | |
], | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment