Connor McCutcheon
/ Music
tokyoNight.mjs
mjs
import { tags as t } from '@lezer/highlight';
import { createTheme } from './theme-helper.mjs';
export const settings = {
  background: '#1a1b26',
  lineBackground: '#1a1b2699',
  foreground: '#787c99',
  caret: '#c0caf5',
  selection: '#515c7e40',
  selectionMatch: '#16161e',
  gutterBackground: '#1a1b26',
  gutterForeground: '#787c99',
  gutterBorder: 'transparent',
  lineHighlight: '#1e202e',
};
export default createTheme({
  theme: 'dark',
  settings: {
    background: '#1a1b26',
    foreground: '#787c99',
    caret: '#c0caf5',
    selection: '#515c7e40',
    selectionMatch: '#16161e',
    gutterBackground: '#1a1b26',
    gutterForeground: '#787c99',
    gutterBorder: 'transparent',
    lineHighlight: '#474b6611',
  },
  styles: [
    { tag: t.keyword, color: '#bb9af7' },
    { tag: [t.name, t.deleted, t.character, t.macroName], color: '#c0caf5' },
    { tag: [t.propertyName], color: '#7aa2f7' },
    { tag: [t.processingInstruction, t.string, t.inserted, t.special(t.string)], color: '#9ece6a' },
    { tag: [t.function(t.variableName), t.labelName], color: '#7aa2f7' },
    { tag: [t.color, t.constant(t.name), t.standard(t.name)], color: '#bb9af7' },
    { tag: [t.definition(t.name), t.separator], color: '#c0caf5' },
    { tag: [t.className], color: '#c0caf5' },
    { tag: [t.number, t.changed, t.annotation, t.modifier, t.self, t.namespace], color: '#ff9e64' },
    { tag: [t.typeName], color: '#0db9d7' },
    { tag: [t.operator, t.operatorKeyword], color: '#bb9af7' },
    { tag: [t.url, t.escape, t.regexp, t.link], color: '#b4f9f8' },
    { tag: [t.meta, t.comment], color: '#444b6a' },
    { tag: t.strong, fontWeight: 'bold' },
    { tag: t.emphasis, fontStyle: 'italic' },
    { tag: t.link, textDecoration: 'underline' },
    { tag: t.heading, fontWeight: 'bold', color: '#89ddff' },
    { tag: [t.atom, t.bool, t.special(t.variableName)], color: '#c0caf5' },
    { tag: t.invalid, color: '#ff5370' },
    { tag: t.strikethrough, textDecoration: 'line-through' },
  ],
});
No comments yet.