diff --git a/packages/codemirror/themes/materialDark.mjs b/packages/codemirror/themes/materialDark.mjs index 87d9b3c7..f1341288 100644 --- a/packages/codemirror/themes/materialDark.mjs +++ b/packages/codemirror/themes/materialDark.mjs @@ -2,50 +2,50 @@ import { tags as t } from '@lezer/highlight'; import { createTheme } from './theme-helper.mjs'; export const settings = { - background: '#2e3235', - lineBackground: '#2e323599', + background: '#212121', + lineBackground: '#21212199', foreground: '#bdbdbd', caret: '#a0a4ae', selection: '#d7d4f0', selectionMatch: '#d7d4f0', - gutterBackground: '#2e3235', + gutterBackground: '#212121', gutterForeground: '#999', gutterActiveForeground: '#4f5b66', - lineHighlight: '#545b61', + lineHighlight: '#111111', }; export default createTheme({ theme: 'dark', settings: { - background: '#2e3235', + background: '#212121', foreground: '#bdbdbd', caret: '#a0a4ae', selection: '#d7d4f063', selectionMatch: '#d7d4f063', - gutterBackground: '#2e3235', + gutterBackground: '#212121', gutterForeground: '#999', gutterActiveForeground: '#4f5b66', - lineHighlight: '#545b6130', + lineHighlight: '#333333', }, styles: [ { tag: t.keyword, color: '#cf6edf' }, { tag: [t.name, t.deleted, t.character, t.macroName], color: '#56c8d8' }, - { tag: [t.propertyName], color: '#facf4e' }, + { tag: [t.propertyName], color: '#82AAFF' }, { tag: [t.variableName], color: '#bdbdbd' }, - { tag: [t.function(t.variableName)], color: '#56c8d8' }, + { tag: [t.function(t.variableName)], color: '#82AAFF' }, { tag: [t.labelName], color: '#cf6edf' }, { tag: [t.color, t.constant(t.name), t.standard(t.name)], color: '#facf4e' }, - { tag: [t.definition(t.name), t.separator], color: '#fa5788' }, + { tag: [t.definition(t.name), t.separator], color: '#56c8d8' }, { tag: [t.brace], color: '#cf6edf' }, - { tag: [t.annotation], color: '#ff5f52' }, - { tag: [t.number, t.changed, t.annotation, t.modifier, t.self, t.namespace], color: '#ffad42' }, - { tag: [t.typeName, t.className], color: '#ffad42' }, - { tag: [t.operator, t.operatorKeyword], color: '#7186f0' }, + { tag: [t.annotation], color: '#f07178' }, + { tag: [t.number, t.changed, t.annotation, t.modifier, t.self, t.namespace], color: '#f07178' }, + { tag: [t.typeName, t.className], color: '#f07178' }, + { tag: [t.operator, t.operatorKeyword], color: '#82AAFF' }, { tag: [t.tagName], color: '#99d066' }, - { tag: [t.squareBracket], color: '#ff5f52' }, + { tag: [t.squareBracket], color: '#f07178' }, { tag: [t.angleBracket], color: '#606f7a' }, { tag: [t.attributeName], color: '#bdbdbd' }, - { tag: [t.regexp], color: '#ff5f52' }, + { tag: [t.regexp], color: '#f07178' }, { tag: [t.quote], color: '#6abf69' }, { tag: [t.string], color: '#99d066' }, { @@ -58,7 +58,7 @@ export default createTheme({ { tag: [t.meta], color: '#707d8b' }, { tag: [t.comment], color: '#707d8b', fontStyle: 'italic' }, { tag: t.monospace, color: '#bdbdbd' }, - { tag: t.strong, fontWeight: 'bold', color: '#ff5f52' }, + { tag: t.strong, fontWeight: 'bold', color: '#f07178' }, { tag: t.emphasis, fontStyle: 'italic', color: '#99d066' }, { tag: t.strikethrough, textDecoration: 'line-through' }, { tag: t.heading, fontWeight: 'bold', color: '#facf4e' }, @@ -70,8 +70,8 @@ export default createTheme({ }, { tag: [t.heading5, t.heading6], color: '#facf4e' }, { tag: [t.atom, t.bool, t.special(t.variableName)], color: '#56c8d8' }, - { tag: [t.processingInstruction, t.inserted], color: '#ff5f52' }, + { tag: [t.processingInstruction, t.inserted], color: '#f07178' }, { tag: [t.contentSeparator], color: '#56c8d8' }, - { tag: t.invalid, color: '#606f7a', borderBottom: `1px dotted #ff5f52` }, + { tag: t.invalid, color: '#606f7a', borderBottom: `1px dotted #f07178` }, ], });