1 Commits

Author SHA1 Message Date
Victoria Drake fea5500b99 Update colors, fix #1 2020-02-03 10:35:44 -05:00
6 changed files with 311 additions and 154 deletions
+14 -1
View File
@@ -5,7 +5,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
🍍 📻
## [0.0.2] - 2020-02-03 🍍
### Fixed
- #1: Invisible line numbers and scrollbar in no-glow mode.
- High contrast in no-glow mode.
- Mismatched colors in glow mode.
### Changed
- Background for better long-term coding.
- Screenshot.
## [0.0.1] - 2020-02-02 🤯 ## [0.0.1] - 2020-02-02 🤯
Binary file not shown.
+12 -7
View File
@@ -1,19 +1,24 @@
.mtk3, .mtk3,
.mtk6 { .mtk5 {
color: #61e2ff; color: #61e2ff;
text-shadow: 0 0 2px #001716, 0 0 5px #03edf933, 0 0 10px #ffff6633; text-shadow: 0 0 2px #001716, 0 0 5px #03edf933, 0 0 10px #ffff6633;
} }
.mtk3.mtki {
color: #6071cc;
}
.mtk4 { .mtk4 {
color: #ffffffee; color: #ffffffee;
} }
.mtk6 ,
.mtk14 { .mtk14 {
color: #9963ff; color: #9963ff;
} }
.mtk8 { .mtk8 {
color: #61ff96; color: #ffcc00;
} }
.mtk9, .mtk9,
@@ -24,10 +29,10 @@
} }
.mtk7 { .mtk7 {
color: #9963ff; color: #61ff96;
} }
.mtk5 { .mtk4 {
color: #fc199a; color: #fc199a;
text-shadow: 0 0 2px #393a33, 0 0 6px #ffffff44, 0 0 8px #fc199a, 0 0 2px #fc199a; text-shadow: 0 0 2px #393a33, 0 0 6px #ffffff44, 0 0 8px #fc199a, 0 0 2px #fc199a;
} }
@@ -47,7 +52,7 @@
.editor .content, .editor .content,
.monaco-editor { .monaco-editor {
background-color: transparent !important; background-color: transparent !important;
background-image: linear-gradient(to bottom, #200933 65%, #3d0b43); background-image: linear-gradient(to bottom, #130d1a 65%, #200933);
background-size: auto 100vh; background-size: auto 100vh;
background-position: top; background-position: top;
background-repeat: no-repeat; background-repeat: no-repeat;
@@ -152,8 +157,8 @@
} }
.monaco-editor .line-numbers { .monaco-editor .line-numbers {
color: #9c31da66; color: #495495;
text-shadow: 0 0 2px #393a33, 0 0 6px #ffffff44, 0 0 10px #9c31da66, 0 0 2px #9c31da66; text-shadow: 0 0 2px #393a33, 0 0 6px #ffffff44, 0 0 10px #495495, 0 0 2px #495495;
} }
.monaco-editor .editor-group-container.empty {} .monaco-editor .editor-group-container.empty {}
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "kabukicho", "name": "kabukicho",
"displayName": "Kabukichō", "displayName": "Kabukichō",
"description": "Neon vaporwave dark theme with dreamy nostalgia and hints of hazy liquid synth.", "description": "Neon vaporwave dark theme with dreamy nostalgia and hints of hazy liquid synth.",
"version": "0.0.1", "version": "0.0.2",
"publisher":"victoriadrake", "publisher":"victoriadrake",
"icon": "icon.png", "icon": "icon.png",
"license": "SEE LICENSE IN LICENSE", "license": "SEE LICENSE IN LICENSE",
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 120 KiB

+281 -142
View File
@@ -2,148 +2,287 @@
"name": "Kabukichō", "name": "Kabukichō",
"type": "dark", "type": "dark",
"colors": { "colors": {
"focusBorder": "#100c0f", "selection.background": "#34294f",
"foreground": "#ffffff", "descriptionForeground": "#495495",
"errorForeground": "#b141f1",
"widget.shadow": "#2a2139", "widget.shadow": "#2a2139",
"selection.background": "#34294f59", "editor.background": "#130d1a",
"errorForeground": "#9c31da", "editor.foreground": "#d4cdde",
"textLink.activeForeground": "#61e2ff", "editorLineNumber.foreground": "#495495",
"textLink.foreground": "#9c31da", "editorLineNumber.activeForeground": "#495495",
"button.background": "#2a2139", "editorCursor.foreground": "#b141f1",
"dropdown.background": "#200933", "badge.background": "#b141f1",
"dropdown.listBackground": "#2a2139", "badge.foreground": "#2a2139",
"input.background": "#2a2139", "activityBar.background": "#130d1a",
"inputOption.activeBorder": "#61e2ff99", "activityBar.dropBackground": "#49549565",
"inputValidation.errorBackground": "#9c31da80", "activityBar.border": "#2a2139",
"inputValidation.errorBorder": "#9c31da00", "activityBar.foreground": "#ffffff",
"scrollbar.shadow": "#2a2139", "activityBar.inactiveForeground": "#ffffff77",
"scrollbarSlider.activeBackground": "#34294f88", "activityBarBadge.background": "#b141f1",
"scrollbarSlider.background": "#34294f1a",
"scrollbarSlider.hoverBackground": "#34294f59",
"badge.foreground": "#ffffff",
"badge.background": "#2a2139",
"progressBar.background": "#9c31da",
"list.activeSelectionBackground": "#2a213980",
"list.activeSelectionForeground": "#ffffff",
"list.dropBackground": "#34294f66",
"list.focusBackground": "#2a213999",
"list.focusForeground": "#ffffff",
"list.highlightForeground": "#9c31da",
"list.hoverBackground": "#2a213999",
"list.hoverForeground": "#ffffff",
"list.inactiveSelectionBackground": "#34294f66",
"list.inactiveSelectionForeground": "#ffffff",
"list.inactiveFocusBackground": "#2a213999",
"list.errorForeground": "#9c31daE6",
"list.warningForeground": "#9c31dabb",
"activityBar.background": "#200933",
"activityBar.dropBackground": "#34294f66",
"activityBar.foreground": "#ffffffCC",
"activityBarBadge.background": "#9c31da",
"activityBarBadge.foreground": "#2a2139", "activityBarBadge.foreground": "#2a2139",
"activityBar.activeBackground": "#b141f133",
"activityBar.activeBorder": "#b141f1",
"sideBar.background": "#100c0f", "sideBar.background": "#100c0f",
"sideBar.dropBackground": "#100c0f",
"sideBar.border": "#2a2139",
"sideBar.foreground": "#ffffff99", "sideBar.foreground": "#ffffff99",
"sideBar.dropBackground": "#34294f4c", "sideBarSectionHeader.background": "#130d1a",
"sideBarSectionHeader.background": "#200933", "sideBarSectionHeader.foreground": "#ffffff99",
"sideBarSectionHeader.foreground": "#ffffffca", "sideBarTitle.foreground": "#ffffff99",
"editorGroup.border": "#495495", "sideBarSectionHeader.border": "#2a2139",
"editorGroup.dropBackground": "#34294f4a", "statusBar.foreground": "#ffffff",
"tab.border": "#20093300", "statusBar.background": "#130d1a",
"tab.activeBorder": "#880088", "statusBar.border": "#2a2139",
"tab.activeBackground": "#100c0f", "statusBar.debuggingBackground": "#130d1a",
"tab.inactiveBackground": "#200933", "statusBar.debuggingForeground": "#08080f50",
"editor.background": "#200933", "statusBar.debuggingBorder": "#08080faf",
"editorPane.background": "#200933", "statusBar.noFolderForeground": "#ffffff",
"editorLineNumber.foreground": "#ffffff10", "statusBar.noFolderBackground": "#130d1a",
"editorLineNumber.activeForeground": "#ffffff73", "statusBar.noFolderBorder": "#130d1a",
"editorCursor.background": "#200933", "statusBarItem.activeBackground": "#130d1a66",
"editorCursor.foreground": "#9c31da",
"editor.selectionBackground": "#46346588",
"editor.selectionHighlightBackground": "#34294f59",
"editor.wordHighlightBackground": "#34294f88",
"editor.wordHighlightStrongBackground": "#34294f88",
"editor.findMatchBackground": "#34294f59",
"editor.findMatchHighlightBackground": "#34294f33",
"editor.findRangeHighlightBackground": "#34294f1a",
"editor.hoverHighlightBackground": "#34294f4d",
"editorHoverWidget.background": "#100c0f",
"editorHoverWidget.border": "#03edf9",
"editor.lineHighlightBackground": "#34294f66",
"editor.rangeHighlightBackground": "#49549539",
"editorIndentGuide.background": "#49549539",
"editorIndentGuide.activeBackground": "#2a2139",
"editorGroupHeader.tabsBorder": "#100c0f",
"editorGroupHeader.tabsBackground": "#200933",
"editorRuler.foreground": "#34294f33",
"editorCodeLens.foreground": "#ffffffcc",
"editorBracketMatch.background": "#34294f66",
"editorBracketMatch.border": "#495495",
"editorOverviewRuler.border": "#34294fb3",
"editorOverviewRuler.findMatchForeground": "#34294f",
"editorOverviewRuler.modifiedForeground": "#49549599",
"editorOverviewRuler.addedForeground": "#09f7a099",
"editorOverviewRuler.deletedForeground": "#9c31da99",
"editorOverviewRuler.errorForeground": "#9c31dadd",
"editorOverviewRuler.warningForeground": "#9c31dacc",
"editorError.foreground": "#9c31da",
"editorWarning.foreground": "#9c31dacc",
"editorGutter.modifiedBackground": "#495495af",
"editorGutter.addedBackground": "#206d4bd6",
"editorGutter.deletedBackground": "#fa2e46a4",
"diffEditor.insertedTextBackground": "#0beb9916",
"diffEditor.removedTextBackground": "#9c31da16",
"editorWidget.background": "#200933",
"editorWidget.border": "#200933",
"editorSuggestWidget.highlightForeground": "#9c31da",
"peekView.border": "#495495",
"peekViewEditor.background": "#200933",
"peekViewEditor.matchHighlightBackground": "#34294f59",
"peekViewResult.background": "#200933",
"peekViewResult.matchHighlightBackground": "#34294f59",
"peekViewResult.selectionBackground": "#2a213980",
"peekViewTitle.background": "#200933",
"panelTitle.activeBorder": "#9c31da",
"statusBar.background": "#200933",
"statusBar.foreground": "#ffffff80",
"statusBar.debuggingBackground": "#9c31da",
"statusBar.debuggingForeground": "#08080f",
"statusBar.noFolderBackground": "#200933",
"statusBarItem.hoverBackground": "#2a2139", "statusBarItem.hoverBackground": "#2a2139",
"statusBarItem.prominentBackground": "#2a2139", "statusBarItem.prominentBackground": "#2a2139",
"statusBarItem.prominentHoverBackground": "#34294f", "statusBarItem.prominentHoverBackground": "#34294f",
"titleBar.activeBackground": "#200933", "button.background": "#b141f121",
"titleBar.inactiveBackground": "#200933", "button.foreground": "#ffffff",
"extensionButton.prominentBackground": "#9c31da", "button.hoverBackground": "#495495",
"extensionButton.prominentHoverBackground": "#61e2ff", "dropdown.background": "#130d1a",
"pickerGroup.foreground": "#9c31daea", "dropdown.border": "#130d1a",
"panel.background": "#200933", "dropdown.foreground": "#495495",
"editorMarkerNavigation.background": "#43435629",
"editorMarkerNavigationError.background": "#b141f1",
"editorMarkerNavigationWarning.background": "#ffcc00",
"editorError.border": "#130d1a",
"editorError.foreground": "#b141f1",
"editorWarning.border": "#130d1a",
"editorWarning.foreground": "#ffcc00",
"editorInfo.border": "#130d1a",
"editorInfo.foreground": "#b141f1",
"editorHint.border": "#54e48400",
"editorHint.foreground": "#54e484",
"editorGroup.emptyBackground": "#49549533",
"editorGroup.border": "#2a2139",
"editorGroup.dropBackground": "#49549533",
"editorGroupHeader.noTabsBackground": "#130d1a",
"editorGroupHeader.tabsBackground": "#130d1a",
"editorGroupHeader.tabsBorder": "#100c0f",
"tab.activeBackground": "#130d1a",
"tab.unfocusedActiveBackground": "#180627",
"tab.activeForeground": "#d4cdde",
"tab.border": "#2a2139",
"tab.inactiveBackground": "#130d1a",
"tab.inactiveForeground": "#ffffff99",
"tab.unfocusedActiveForeground": "#ffffff99",
"tab.unfocusedInactiveForeground": "#ffffff99",
"tab.activeBorder": "#f92aad",
"tab.activeModifiedBorder": "#54e484",
"tab.activeBorderTop": "#130d1a",
"tab.unfocusedActiveBorder": "#130d1a",
"tab.unfocusedHoverBackground": "#b141f121",
"textBlockQuote.background": "#130d1a",
"textBlockQuote.border": "#d4cdde",
"textCodeBlock.background": "#130d1a",
"textLink.activeForeground": "#b141f1",
"textLink.foreground": "#b141f1",
"textPreformat.foreground": "#ffcc00",
"textSeparator.foreground": "#130d1a",
"walkThrough.embeddedEditorBackground": "#130d1a",
"welcomePage.buttonBackground": "#100c0f",
"welcomePage.buttonHoverBackground": "#130d1a",
"input.background": "#100c0f",
"input.border": "#100c0f",
"input.foreground": "#d4cdde",
"input.placeholderForeground": "#d4cdde",
"inputOption.activeBorder": "#d4cdde",
"inputValidation.errorForeground": "#b141f1",
"inputValidation.errorBackground": "#b141f180",
"inputValidation.errorBorder": "#b141f100",
"inputValidation.infoForeground": "#b141f1",
"inputValidation.infoBackground": "#130d1a",
"inputValidation.infoBorder": "#58c7e0",
"inputValidation.warningForeground": "#ffcc00",
"inputValidation.warningBackground": "#130d1a",
"inputValidation.warningBorder": "#ffcc00",
"editorWidget.background": "#130d1a",
"editorWidget.border": "#2a2139",
"editorHoverWidget.background": "#100c0f",
"editorHoverWidget.border": "#2a2139",
"editorSuggestWidget.background": "#100c0f",
"editorSuggestWidget.border": "#2a2139",
"editorSuggestWidget.foreground": "#ffffff99",
"editorSuggestWidget.highlightForeground": "#b141f1",
"editorSuggestWidget.selectedBackground": "#130d1a",
"editorGutter.background": "#130d1a",
"editorGutter.addedBackground": "#206d4bd6",
"editorGutter.deletedBackground": "#fa2e46a4",
"editorGutter.modifiedBackground": "#ffcc00",
"editor.selectionBackground": "#46346588",
"editor.selectionHighlightBackground": "#b141f133",
"editor.inactiveSelectionBackground": "#ffffff33",
"editor.wordHighlightStrongBackground": "#34294f88",
"editor.wordHighlightBackground": "#34294f88",
"editor.findMatchBackground": "#34294f",
"editor.findMatchHighlightBackground": "#34294f88",
"editor.findRangeHighlightBackground": "#34294f1a",
"editor.hoverHighlightBackground": "#34294f4d",
"editor.lineHighlightBackground": "#34294f66",
"editor.lineHighlightBorder": "#34294f66",
"editor.rangeHighlightBackground": "#49549539",
"editorLink.activeForeground": "#649fc4",
"editorWhitespace.foreground": "#ffffff21",
"editorIndentGuide.background": "#49549539",
"editorIndentGuide.activeBackground": "#2a2139",
"editorBracketMatch.background": "#34294f66",
"editorBracketMatch.border": "#495495",
"editorRuler.foreground": "#34294f33",
"editorOverviewRuler.findMatchForeground": "#34294f",
"editorOverviewRuler.modifiedForeground": "#49549599",
"editorOverviewRuler.addedForeground": "#09f7a099",
"editorOverviewRuler.deletedForeground": "#b141f199",
"editorOverviewRuler.errorForeground": "#b141f1dd",
"editorOverviewRuler.warningForeground": "#b141f1cc",
"editorCodeLens.foreground": "#ffffffcc",
"terminal.ansiBlack": "#100c0f",
"terminal.ansiRed": "#f92aad",
"terminal.ansiGreen": "#54e484",
"terminal.ansiYellow": "#ffcc00",
"terminal.ansiBlue": "#58c7e0",
"terminal.ansiMagenta": "#b141f1",
"terminal.ansiCyan": "#61e2ff",
"terminal.ansiWhite": "#495495",
"terminal.ansiBrightBlack": "#100c0f",
"terminal.ansiBrightRed": "#f92aad",
"terminal.ansiBrightGreen": "#54e484",
"terminal.ansiBrightYellow": "#ffcc00",
"terminal.ansiBrightBlue": "#61e2ff",
"terminal.ansiBrightMagenta": "#b141f1",
"terminal.ansiBrightCyan": "#61e2ff",
"terminal.ansiBrightWhite": "#ffffff",
"terminal.background": "#100c0f", "terminal.background": "#100c0f",
"terminal.foreground": "#ffffff", "terminal.foreground": "#d4cdde",
"terminal.ansiBlue": "#03edf9", "terminalCursor.background": "#100c0f",
"terminal.ansiBrightBlue": "#03edf9", "terminalCursor.foreground": "#b141f1",
"terminal.ansiBrightCyan": "#03edf9", "merge.border": "#130d1a00",
"terminal.ansiBrightGreen": "#9c31da", "merge.currentContentBackground": "#2a213922",
"terminal.ansiBrightMagenta": "#61e2ff", "merge.currentHeaderBackground": "#2a213944",
"terminal.ansiBrightRed": "#9c31da", "merge.incomingContentBackground": "#aea8dc22",
"terminal.ansiBrightYellow": "#f92aad", "merge.incomingHeaderBackground": "#aea8dc44",
"terminal.ansiCyan": "#03edf9", "merge.commonContentBackground": "#ffcc0022",
"terminal.ansiGreen": "#9c31da", "merge.commonHeaderBackground": "#ffcc0044",
"terminal.ansiMagenta": "#61e2ff", "editorOverviewRuler.currentContentForeground": "#2a213944",
"terminal.ansiRed": "#9c31da", "editorOverviewRuler.incomingContentForeground": "#cac4f544",
"terminal.ansiYellow": "#9c31da", "editorOverviewRuler.commonContentForeground": "#ffcc0044",
"terminal.selectionBackground": "#34294f4d", "editorOverviewRuler.border": "#130d1a",
"terminalCursor.background": "#ffffff", "notificationCenter.border": "#130d1a",
"terminalCursor.foreground": "#03edf9", "notificationCenterHeader.foreground": "#d4cdde",
"debugToolBar.background": "#200933", "notificationCenterHeader.background": "#130d1a",
"walkThrough.embeddedEditorBackground": "#200933", "notificationToast.border": "#130d1a",
"notifications.foreground": "#d4cdde",
"notifications.background": "#130d1a",
"notifications.border": "#130d1a",
"notificationLink.foreground": "#ffffff",
"diffEditor.insertedTextBackground": "#54e48425",
"diffEditor.removedTextBackground": "#b141f116",
"debugToolBar.background": "#130d1a",
"debugExceptionWidget.background": "#130d1a",
"debugExceptionWidget.border": "#ffffff",
"extensionButton.prominentBackground": "#b141f1",
"extensionButton.prominentForeground": "#e5f5f5",
"extensionButton.prominentHoverBackground": "#58c7e0",
"focusBorder": "#130d1a",
"foreground": "#495495",
"panel.background": "#130d1a",
"panel.border": "#2a2139",
"panelTitle.activeBorder": "#495495",
"panelTitle.activeForeground": "#b141f1",
"panelTitle.inactiveForeground": "#ffffff",
"peekView.border": "#495495",
"peekViewEditor.background": "#130d1a",
"peekViewEditor.matchHighlightBackground": "#34294f",
"peekViewEditor.matchHighlightBorder": "#130d1a",
"peekViewEditorGutter.background": "#130d1a",
"peekViewResult.background": "#130d1a",
"peekViewResult.fileForeground": "#ffcc00",
"peekViewResult.lineForeground": "#ffffff",
"peekViewResult.matchHighlightBackground": "#130d1a",
"peekViewResult.selectionBackground": "#130d1a",
"peekViewResult.selectionForeground": "#ffffff",
"peekViewTitle.background": "#130d1a",
"peekViewTitleDescription.foreground": "#ffffff",
"peekViewTitleLabel.foreground": "#b141f1",
"progressBar.background": "#b141f1",
"scrollbar.shadow": "#2a2139",
"scrollbarSlider.activeBackground": "#34294f77",
"scrollbarSlider.background": "#34294f33",
"scrollbarSlider.hoverBackground": "#34294f55",
"gitDecoration.addedResourceForeground": "#b141f1cc",
"gitDecoration.modifiedResourceForeground": "#b893ceee", "gitDecoration.modifiedResourceForeground": "#b893ceee",
"gitDecoration.deletedResourceForeground": "#9c31da", "gitDecoration.deletedResourceForeground": "#b141f1",
"gitDecoration.addedResourceForeground": "#9c31dacc", "gitDecoration.untrackedResourceForeground": "#b141f1",
"gitDecoration.untrackedResourceForeground": "#9c31da",
"gitDecoration.ignoredResourceForeground": "#ffffff59", "gitDecoration.ignoredResourceForeground": "#ffffff59",
"breadcrumb.background": "#100c0f", "gitDecoration.conflictingResourceForeground": "#ffcc00",
"breadcrumbPicker.background": "#100c0f", "pickerGroup.border": "#58c7e0",
"welcomePage.background": "#100c0f" "pickerGroup.foreground": "#d4cdde",
"list.activeSelectionBackground": "#2a213980",
"list.activeSelectionForeground": "#ffffff",
"list.dropBackground": "#34294f66",
"list.focusBackground": "#130d1a",
"list.focusForeground": "#ffffff",
"list.highlightForeground": "#b141f1",
"list.hoverBackground": "#130d1a",
"list.hoverForeground": "#ffffff",
"list.inactiveSelectionBackground": "#34294f66",
"list.inactiveSelectionForeground": "#ffffff",
"list.inactiveFocusBackground": "#130d1a",
"list.errorForeground": "#b141f1E6",
"list.warningForeground": "#ffcc00",
"listFilterWidget.background": "#100c0f",
"listFilterWidget.outline": "#54e484",
"listFilterWidget.noMatchesOutline": "#b141f1",
"tree.indentGuidesStroke": "#495495",
"settings.headerForeground": "#b141f1",
"settings.modifiedItemIndicator": "#58c7e0",
"settings.dropdownListBorder": "#34294f",
"settings.dropdownBackground": "#130d1a",
"settings.dropdownForeground": "#495495",
"settings.dropdownBorder": "#130d1a",
"settings.checkboxBackground": "#130d1a",
"settings.checkboxForeground": "#495495",
"settings.checkboxBorder": "#130d1a",
"settings.textInputBackground": "#130d1a",
"settings.textInputForeground": "#495495",
"settings.textInputBorder": "#130d1a",
"settings.numberInputBackground": "#100c0f",
"settings.numberInputForeground": "#7068b1",
"settings.numberInputBorder": "#100c0f",
"breadcrumb.foreground": "#ffffff99",
"breadcrumb.background": "#130d1a",
"breadcrumb.focusForeground": "#b141f1",
"breadcrumb.activeSelectionForeground": "#ffffff",
"breadcrumbPicker.background": "#130d1a",
"titleBar.activeBackground": "#130d1a",
"titleBar.activeForeground": "#b141f1",
"titleBar.inactiveBackground": "#130d1a",
"titleBar.inactiveForeground": "#ffffff99",
"menu.background": "#130d1a",
"menu.foreground": "#ffffff99",
"menu.selectionBackground": "#130d1a",
"menu.selectionForeground": "#b141f1",
"menu.selectionBorder": "#130d1a",
"menu.separatorBackground": "#b141f1",
"menubar.selectionBackground": "#130d1a",
"menubar.selectionForeground": "#b141f1",
"menubar.selectionBorder": "#130d1a",
"editor.snippetTabstopHighlightBackground": "#100c0f",
"editor.snippetTabstopHighlightBorder": "#100c0f",
"editor.snippetFinalTabstopHighlightBackground": "#100c0f",
"editor.snippetFinalTabstopHighlightBorder": "#100c0f",
"minimap.findMatchHighlight": "#b141f1ee",
"minimap.errorHighlight": "#b141f1ee",
"minimap.warningHighlight": "#ffcc00ee",
"minimapGutter.addedBackground": "#58c7e0",
"minimapGutter.modifiedBackground": "#54e484",
"minimapGutter.deletedBackground": "#b141f1"
}, },
"tokenColors": [{ "tokenColors": [{
"name": "COMMENT", "name": "COMMENT",
@@ -193,7 +332,7 @@
"meta.attribute-selector punctuation.definition.entity" "meta.attribute-selector punctuation.definition.entity"
], ],
"settings": { "settings": {
"foreground": "#ffffff" "foreground": "#d4cdde"
} }
}, },
{ {
@@ -318,7 +457,7 @@
"source.css entity.name.tag.custom" "source.css entity.name.tag.custom"
], ],
"settings": { "settings": {
"foreground": "#61e2ff" "foreground": "#58c7e0"
} }
}, },
{ {
@@ -383,7 +522,7 @@
"source.scala entity.name.class" "source.scala entity.name.class"
], ],
"settings": { "settings": {
"foreground": "#61e2ff" "foreground": "#58c7e0"
} }
}, },
{ {
@@ -421,7 +560,7 @@
"constant.other.placeholder" "constant.other.placeholder"
], ],
"settings": { "settings": {
"foreground": "#9c31da" "foreground": "#b141f1"
} }
}, },
{ {
@@ -480,7 +619,7 @@
"source.tf support.class.variable" "source.tf support.class.variable"
], ],
"settings": { "settings": {
"foreground": "#61ff96" "foreground": "#54e484"
} }
}, },
{ {
@@ -497,7 +636,7 @@
"source.tf entity.name" "source.tf entity.name"
], ],
"settings": { "settings": {
"foreground": "#9c31da" "foreground": "#b141f1"
} }
}, },
{ {
@@ -517,7 +656,7 @@
"text.tex markup.raw" "text.tex markup.raw"
], ],
"settings": { "settings": {
"foreground": "#9c31da" "foreground": "#b141f1"
} }
}, },
{ {
@@ -537,7 +676,7 @@
"source.toml constant" "source.toml constant"
], ],
"settings": { "settings": {
"foreground": "#9c31da" "foreground": "#b141f1"
} }
}, },
{ {
@@ -602,7 +741,7 @@
"entity.name.scope-resolution.function.call" "entity.name.scope-resolution.function.call"
], ],
"settings": { "settings": {
"foreground": "#36f9f6" "foreground": "#58c7e0"
} }
}, },
{ {
@@ -657,7 +796,7 @@
"source.tf meta.keyword.map" "source.tf meta.keyword.map"
], ],
"settings": { "settings": {
"foreground": "#36f9f6" "foreground": "#58c7e0"
} }
}, },
{ {