Advertisement
Unkoide

Untitled

Mar 22nd, 2023
722
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.13 KB | Source Code | 0 0
  1. {
  2.     "editor.fontFamily": "Fira Code Retina",
  3.     "editor.fontLigatures": true,
  4.     "editor.wordWrap": "on",
  5.     "editor.semanticHighlighting.enabled": false,
  6.     "workbench.colorTheme": "Material Theme Palenight",
  7.     "workbench.iconTheme": "material-icon-theme",
  8.     "materialTheme.accent": "Acid Lime",
  9.     "workbench.colorCustomizations": {
  10.         "editorBracketHighlight.foreground1": "#cfcfcf",
  11.         "[Material Theme Palenight]": {
  12.             "activityBarBadge.background": "#C6FF00",
  13.             "activityBar.activeBorder": "#C6FF00",
  14.             "list.activeSelectionForeground": "#C6FF00",
  15.             "list.inactiveSelectionForeground": "#C6FF00",
  16.             "list.highlightForeground": "#C6FF00",
  17.             "scrollbarSlider.activeBackground": "#C6FF0050",
  18.             "editorSuggestWidget.highlightForeground": "#C6FF00",
  19.             "textLink.foreground": "#C6FF00",
  20.             "progressBar.background": "#C6FF00",
  21.             "pickerGroup.foreground": "#C6FF00",
  22.             "tab.activeBorder": "#C6FF00",
  23.             "notificationLink.foreground": "#C6FF00",
  24.             "editorWidget.resizeBorder": "#C6FF00",
  25.             "editorWidget.border": "#C6FF00",
  26.             "settings.modifiedItemIndicator": "#C6FF00",
  27.             "settings.headerForeground": "#C6FF00",
  28.             "panelTitle.activeBorder": "#C6FF00",
  29.             "breadcrumb.activeSelectionForeground": "#C6FF00",
  30.             "menu.selectionForeground": "#C6FF00",
  31.             "menubar.selectionForeground": "#C6FF00",
  32.             "editor.findMatchBorder": "#C6FF00",
  33.             "selection.background": "#C6FF0040",
  34.             "statusBarItem.remoteBackground": "#C6FF00"
  35.         }
  36.     },
  37.     "editor.tokenColorCustomizations": {
  38.         "textMateRules": [
  39.             {
  40.                 "scope": ["variable"],
  41.                 "settings": {
  42.                     "foreground": "#f8e048"
  43.                     // "fontStyle": "bold"
  44.                 }
  45.             },
  46.             {
  47.                 "scope": ["string.quoted"],
  48.                 "settings": {
  49.                     "foreground": "#45c5a3e1"
  50.                     // "fontStyle": "bold"
  51.                 }
  52.             },
  53.             {
  54.                 "scope": ["string"],
  55.                 "settings": {
  56.                     "foreground": "#21ae05e8"
  57.                     // "fontStyle": "bold"
  58.                 }
  59.             },
  60.             {
  61.                 "scope": ["meta.tag"],
  62.                 "settings": {
  63.                     "foreground": "#ff6a00"
  64.                     // "fontStyle": "bold"
  65.                 }
  66.             },
  67.             {
  68.                 "scope": ["variable.other.property"],
  69.                 "settings": {
  70.                     "foreground": "#cd2547"
  71.                 }
  72.             },
  73.             {
  74.                 "scope": ["keyword.control"],
  75.                 "settings": {
  76.                     "foreground": "#94bd00",
  77.                     "fontStyle": "bold"
  78.                 }
  79.             },
  80.             {
  81.                 "scope": ["storage.type"],
  82.                 "settings": {
  83.                     "foreground": "#20afda"
  84.                 }
  85.             }
  86.         ]
  87.     },
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement