diff --git a/packages/codemirror/themes/duotoneDark.mjs b/packages/codemirror/themes/duotoneDark.mjs index 51e04841..057302cb 100644 --- a/packages/codemirror/themes/duotoneDark.mjs +++ b/packages/codemirror/themes/duotoneDark.mjs @@ -9,7 +9,7 @@ import { createTheme } from './theme-helper.mjs'; export const settings = { background: '#2a2734', lineBackground: '#2a273499', - foreground: '#6c6783', + foreground: '#eeebff', caret: '#ffad5c', selection: 'rgba(255, 255, 255, 0.1)', gutterBackground: '#2a2734', @@ -23,20 +23,20 @@ export default createTheme({ background: '#2a2734', foreground: '#6c6783', caret: '#ffad5c', - selection: '#91ff6c26', - selectionMatch: '#91ff6c26', + selection: '#9a86fd', + selectionMatch: '#9a86fd', gutterBackground: '#2a2734', gutterForeground: '#545167', lineHighlight: '#36334280', }, styles: [ - { tag: [t.comment, t.bracket], color: '#6c6783' }, + { tag: [t.comment, t.bracket, t.operator], color: '#6c6783' }, { tag: [t.atom, t.number, t.keyword, t.link, t.attributeName, t.quote], color: '#ffcc99' }, { tag: [t.emphasis, t.heading, t.tagName, t.propertyName, t.className, t.variableName], color: '#eeebff' }, - { tag: [t.typeName, t.url], color: '#7a63ee' }, - { tag: t.operator, color: '#ffad5c' }, + { tag: [t.typeName, t.url], color: '#eeebff' }, { tag: t.string, color: '#ffb870' }, - { tag: [t.propertyName], color: '#9a86fd' }, - { tag: [t.unit, t.punctuation], color: '#e09142' }, + /* { tag: [t.propertyName], color: '#9a86fd' }, */ + { tag: [t.propertyName], color: '#eeebff' }, + { tag: t.labelName, color: '#eeebff' }, ], });