mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 21:58:37 +00:00
78 lines
2.9 KiB
JavaScript
78 lines
2.9 KiB
JavaScript
import { tags as t } from '@lezer/highlight';
|
|
import { createTheme } from './theme-helper.mjs';
|
|
|
|
export const settings = {
|
|
background: '#212121',
|
|
lineBackground: '#21212199',
|
|
foreground: '#bdbdbd',
|
|
caret: '#a0a4ae',
|
|
selection: '#d7d4f0',
|
|
selectionMatch: '#d7d4f0',
|
|
gutterBackground: '#212121',
|
|
gutterForeground: '#999',
|
|
gutterActiveForeground: '#4f5b66',
|
|
lineHighlight: '#111111',
|
|
};
|
|
|
|
export default createTheme({
|
|
theme: 'dark',
|
|
settings: {
|
|
background: '#212121',
|
|
foreground: '#bdbdbd',
|
|
caret: '#a0a4ae',
|
|
selection: '#d7d4f063',
|
|
selectionMatch: '#d7d4f063',
|
|
gutterBackground: '#212121',
|
|
gutterForeground: '#999',
|
|
gutterActiveForeground: '#4f5b66',
|
|
lineHighlight: '#333333',
|
|
},
|
|
styles: [
|
|
{ tag: t.keyword, color: '#cf6edf' },
|
|
{ tag: [t.name, t.deleted, t.character, t.macroName], color: '#56c8d8' },
|
|
{ tag: [t.propertyName], color: '#82AAFF' },
|
|
{ tag: [t.variableName], color: '#bdbdbd' },
|
|
{ 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: '#56c8d8' },
|
|
{ tag: [t.brace], color: '#cf6edf' },
|
|
{ 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: '#f07178' },
|
|
{ tag: [t.angleBracket], color: '#606f7a' },
|
|
{ tag: [t.attributeName], color: '#bdbdbd' },
|
|
{ tag: [t.regexp], color: '#f07178' },
|
|
{ tag: [t.quote], color: '#6abf69' },
|
|
{ tag: [t.string], color: '#99d066' },
|
|
{
|
|
tag: t.link,
|
|
color: '#56c8d8',
|
|
textDecoration: 'underline',
|
|
textUnderlinePosition: 'under',
|
|
},
|
|
{ tag: [t.url, t.escape, t.special(t.string)], color: '#facf4e' },
|
|
{ tag: [t.meta], color: '#707d8b' },
|
|
{ tag: [t.comment], color: '#707d8b', fontStyle: 'italic' },
|
|
{ tag: t.monospace, color: '#bdbdbd' },
|
|
{ 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' },
|
|
{ tag: t.heading1, fontWeight: 'bold', color: '#facf4e' },
|
|
{
|
|
tag: [t.heading2, t.heading3, t.heading4],
|
|
fontWeight: 'bold',
|
|
color: '#facf4e',
|
|
},
|
|
{ tag: [t.heading5, t.heading6], color: '#facf4e' },
|
|
{ tag: [t.atom, t.bool, t.special(t.variableName)], color: '#56c8d8' },
|
|
{ tag: [t.processingInstruction, t.inserted], color: '#f07178' },
|
|
{ tag: [t.contentSeparator], color: '#56c8d8' },
|
|
{ tag: t.invalid, color: '#606f7a', borderBottom: `1px dotted #f07178` },
|
|
],
|
|
});
|