improve duotoneDark

This commit is contained in:
Felix Roos 2025-01-28 22:47:59 +01:00
parent 6062a2e757
commit 6c537cb134
No known key found for this signature in database

View File

@ -9,7 +9,7 @@ import { createTheme } from './theme-helper.mjs';
export const settings = { export const settings = {
background: '#2a2734', background: '#2a2734',
lineBackground: '#2a273499', lineBackground: '#2a273499',
foreground: '#6c6783', foreground: '#eeebff',
caret: '#ffad5c', caret: '#ffad5c',
selection: 'rgba(255, 255, 255, 0.1)', selection: 'rgba(255, 255, 255, 0.1)',
gutterBackground: '#2a2734', gutterBackground: '#2a2734',
@ -23,20 +23,20 @@ export default createTheme({
background: '#2a2734', background: '#2a2734',
foreground: '#6c6783', foreground: '#6c6783',
caret: '#ffad5c', caret: '#ffad5c',
selection: '#91ff6c26', selection: '#9a86fd',
selectionMatch: '#91ff6c26', selectionMatch: '#9a86fd',
gutterBackground: '#2a2734', gutterBackground: '#2a2734',
gutterForeground: '#545167', gutterForeground: '#545167',
lineHighlight: '#36334280', lineHighlight: '#36334280',
}, },
styles: [ 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.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.emphasis, t.heading, t.tagName, t.propertyName, t.className, t.variableName], color: '#eeebff' },
{ tag: [t.typeName, t.url], color: '#7a63ee' }, { tag: [t.typeName, t.url], color: '#eeebff' },
{ tag: t.operator, color: '#ffad5c' },
{ tag: t.string, color: '#ffb870' }, { tag: t.string, color: '#ffb870' },
{ tag: [t.propertyName], color: '#9a86fd' }, /* { tag: [t.propertyName], color: '#9a86fd' }, */
{ tag: [t.unit, t.punctuation], color: '#e09142' }, { tag: [t.propertyName], color: '#eeebff' },
{ tag: t.labelName, color: '#eeebff' },
], ],
}); });