commit 2f39eddcbc4567e2e521d24b4489ffe8026f5bfa Author: 宇天 Date: Fri Nov 30 16:54:24 2018 +0800 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..69a657b --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +.DS_Store +.AppleDouble +.LSOverride +.vscode + +# Thumbnails +._* + +# Files that might appear on external disk +.Spotlight-V100 +.Trashes + +node_modules +*.vsix +vsc-extension-quickstart.md diff --git a/.vscodeignore b/.vscodeignore new file mode 100644 index 0000000..f369b5e --- /dev/null +++ b/.vscodeignore @@ -0,0 +1,4 @@ +.vscode/** +.vscode-test/** +.gitignore +vsc-extension-quickstart.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..203ff73 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +# Change Log +All notable changes to the "one-plain" extension will be documented in this file. + +Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. + +## [Unreleased] +- Initial release diff --git a/README.md b/README.md new file mode 100644 index 0000000..907bfd3 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# README +## This is the README for your extension "one-plain" +You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts: + +* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux) +* Toggle preview (`Shift+CMD+V` on macOS or `Shift+Ctrl+V` on Windows and Linux) +* Press `Ctrl+Space` (Windows, Linux) or `Cmd+Space` (macOS) to see a list of Markdown snippets + +### For more information +* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown) +* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/) + +**Enjoy!** diff --git a/package.json b/package.json new file mode 100644 index 0000000..ad1b36d --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "one-plain", + "displayName": "米白色主题", + "description": "米白色主题", + "icon": "logo.png", + "version": "0.0.1", + "publisher": "yutent", + "author": "Yutent [@yutent]", + "engines": { + "vscode": "^1.29.0" + }, + "categories": [ + "Themes" + ], + "contributes": { + "themes": [ + { + "label": "米白色主题", + "uiTheme": "vs", + "path": "./themes/color-theme.json" + } + ] + } +} diff --git a/themes/color-theme.json b/themes/color-theme.json new file mode 100644 index 0000000..842c8ab --- /dev/null +++ b/themes/color-theme.json @@ -0,0 +1,807 @@ +{ + "name": "米白色主题", + "type": "light", + "tokenColors": [ + { + "settings": { + "background": "#fafafa", + "foreground": "#546e7a" + } + }, + { + "name": "Comment", + "scope": ["comment", "punctuation.definition.comment"], + "settings": { + "fontStyle": "italic", + "foreground": "#B6D5E0" + } + }, + { + "name": "Variables", + "scope": ["variable", "string constant.other.placeholder"], + "settings": { + "foreground": "#546e7a" + } + }, + { + "name": "PHP Constants", + "scope": ["constant.other.php"], + "settings": { + "foreground": "#FFB62C" + } + }, + { + "name": "Colors", + "scope": ["constant.other.color"], + "settings": { + "foreground": "#546e7a" + } + }, + { + "name": "Invalid", + "scope": ["invalid", "invalid.illegal"], + "settings": { + "foreground": "#546e7a" + } + }, + { + "name": "Invalid deprecated", + "scope": ["invalid.deprecated"], + "settings": { + "fontStyle": "italic", + "foreground": "#FFB62C" + } + }, + { + "name": "Unimplemented", + "scope": "invalid.unimplemented", + "settings": { + "foreground": "#546e7a" + } + }, + { + "name": "Keyword, Storage", + "scope": ["keyword", "storage.type", "storage.modifier"], + "settings": { + "foreground": "#FF5370" + } + }, + { + "name": "Keyword, Storage", + "scope": ["storage.type", "keyword.control"], + "settings": { + "fontStyle": "italic" + } + }, + { + "name": "Operator, Misc", + "scope": [ + "keyword.control", + "constant.other.color", + "meta.tag", + "punctuation.definition.tag", + "punctuation.separator.inheritance.php", + "punctuation.definition.tag.html", + "punctuation.definition.tag.begin.html", + "punctuation.definition.tag.end.html", + "punctuation.section.embedded", + "keyword.other.template", + "keyword.other.substitution" + ], + "settings": { + "foreground": "#FF5370" + } + }, + { + "name": "Operator, Misc", + "scope": [ + "punctuation.definition.generic.begin.wxml", + "punctuation.definition.generic.end.wxml" + ], + "settings": { + "foreground": "#f7820c" + } + }, + { + "name": "Keyword Control", + "scope": ["keyword.control"], + "settings": { + "fontStyle": "italic" + } + }, + { + "name": "Tag", + "scope": [ + "entity.name.tag", + "meta.tag.sgml", + "markup.deleted.git_gutter" + ], + "settings": { + "foreground": "#FF5370" + } + }, + { + "name": "Function, Special Method, Block Level", + "scope": [ + "entity.name.function", + "meta.function-call", + "variable.function", + "support.function", + "keyword.other.special-method", + "meta.block-level" + ], + "settings": { + "foreground": "#0099ff" + } + }, + { + "name": "C-related Block Level Variables", + "scope": ["source.cpp meta.block variable.other"], + "settings": { + "foreground": "#FF5370" + } + }, + { + "name": "Variables constant", + "scope": ["variable.other.constant"], + "settings": { + "foreground": "#FF5370" + } + }, + { + "name": "Other Variable, String Link", + "scope": ["support.other.variable", "string.other.link"], + "settings": { + "foreground": "#FF5370" + } + }, + { + "name": "Number, Constant, Function Argument, Tag Attribute, Embedded", + "scope": [ + "constant.numeric", + "constant.language", + "support.constant", + "constant.character", + "variable.parameter", + "keyword.other.unit" + ], + "settings": { + "fontStyle": "italic", + "foreground": "#7C4DFF" + } + }, + { + "name": "Number, Constant, Function Argument, Tag Attribute, Embedded", + "scope": ["variable.parameter.function.language.special"], + "settings": { + "foreground": "#E53935" + } + }, + { + "name": "Number, Constant, Function Argument, Tag Attribute, Embedded", + "scope": "constant.character.entity.wxml", + "settings": { + "fontStyle": "italic", + "foreground": "#546e7a" + } + }, + { + "name": "String", + "scope": ["string", "punctuation"], + "settings": { + "fontStyle": "normal", + "foreground": "#53c659" + } + }, + { + "name": "Symbols, Inherited Class, Markup Heading", + "scope": [ + "constant.other.symbol", + "constant.other.key", + "entity.other.inherited-class", + "markup.heading", + "markup.inserted.git_gutter", + "meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js" + ], + "settings": { + "fontStyle": "normal", + "foreground": "#546e7a" + } + }, + { + "name": "Class, Support", + "scope": [ + "entity.name.class", + "entity.name.type.class", + "support.type", + "support.class", + "support.orther.namespace.use.php", + "meta.use.php", + "support.other.namespace.php", + "markup.changed.git_gutter", + "support.type.sys-types" + ], + "settings": { + "fontStyle": "bold italic", + "foreground": "#FFB62C" + } + }, + { + "name": "Entity Types", + "scope": ["support.type"], + "settings": { + "foreground": "#8796B0" + } + }, + { + "name": "CSS Class and Support", + "scope": [ + "source.css support.type.property-name", + "source.sass support.type.property-name", + "source.scss support.type.property-name", + "source.less support.type.property-name", + "source.stylus support.type.property-name", + "source.postcss support.type.property-name" + ], + "settings": { + "foreground": "#8796B0" + } + }, + { + "name": "Sub-methods", + "scope": [ + "entity.name.module.js", + "variable.import.parameter.js", + "variable.other.class.js" + ], + "settings": { + "foreground": "#E53935" + } + }, + { + "name": "Language methods", + "scope": ["variable.language"], + "settings": { + "fontStyle": "italic", + "foreground": "#E53935" + } + }, + { + "name": "entity.name.method.js", + "scope": ["entity.name.method.js"], + "settings": { + "fontStyle": "italic", + "foreground": "#6182B8" + } + }, + { + "name": "meta.method.js", + "scope": [ + "meta.class-method.js entity.name.function.js", + "variable.function.constructor" + ], + "settings": { + "foreground": "#6182B8" + } + }, + { + "name": "Attributes", + "scope": ["entity.other.attribute-name"], + "settings": { + "foreground": "#7C4DFF" + } + }, + { + "name": "HTML Attributes", + "scope": [ + "text.html.basic entity.other.attribute-name.html", + "text.html.basic entity.other.attribute-name", + "text.xhtml.basic entity.other.attribute-name.xhtml", + "text.xhtml.basic entity.other.attribute-name" + ], + "settings": { + "fontStyle": "italic", + "foreground": "#FFB62C" + } + }, + { + "name": "CSS Classes", + "scope": ["entity.other.attribute-name.class"], + "settings": { + "foreground": "#FFB62C" + } + }, + { + "name": "CSS ID's", + "scope": ["source.sass keyword.control"], + "settings": { + "foreground": "#6182B8" + } + }, + { + "name": "Inserted", + "scope": ["markup.inserted"], + "settings": { + "foreground": "#91B859" + } + }, + { + "name": "Deleted", + "scope": ["markup.deleted"], + "settings": { + "foreground": "#E53935" + } + }, + { + "name": "Changed", + "scope": ["markup.changed"], + "settings": { + "foreground": "#7C4DFF" + } + }, + { + "name": "Regular Expressions", + "scope": ["string.regexp"], + "settings": { + "foreground": "#0099ff" + } + }, + { + "name": "Escape Characters", + "scope": ["constant.character.escape"], + "settings": { + "foreground": "#39ADB5" + } + }, + { + "name": "URL", + "scope": ["*url*", "*link*", "*uri*"], + "settings": { + "fontStyle": "underline" + } + }, + { + "name": "Decorators", + "scope": [ + "tag.decorator.js entity.name.tag.js", + "tag.decorator.js punctuation.definition.tag.js" + ], + "settings": { + "fontStyle": "italic", + "foreground": "#6182B8" + } + }, + { + "name": "ES7 Bind Operator", + "scope": [ + "source.js constant.other.object.key.js string.unquoted.label.js" + ], + "settings": { + "fontStyle": "italic", + "foreground": "#E53935" + } + }, + { + "name": "JSON Key - Level 0", + "scope": [ + "source.json meta.structure.dictionary.json string.quoted.double.json - meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json", + "source.json meta.structure.dictionary.json punctuation.definition.string - meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.definition.string" + ], + "settings": { + "foreground": "#7C4DFF" + } + }, + { + "name": "JSON Key - Level 1", + "scope": [ + "source.json meta meta.structure.dictionary.json string.quoted.double.json - meta meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json", + "source.json meta meta.structure.dictionary.json punctuation.definition.string - meta meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.definition.string" + ], + "settings": { + "foreground": "#FFB62C" + } + }, + { + "name": "JSON Key - Level 2", + "scope": [ + "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" + ], + "settings": { + "foreground": "#F76D47" + } + }, + { + "name": "JSON Key - Level 3", + "scope": [ + "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" + ], + "settings": { + "foreground": "#E53935" + } + }, + { + "name": "JSON Key - Level 4", + "scope": [ + "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" + ], + "settings": { + "foreground": "#C17E70" + } + }, + { + "name": "JSON Key - Level 5", + "scope": [ + "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" + ], + "settings": { + "foreground": "#6182B8" + } + }, + { + "name": "JSON Key - Level 6", + "scope": [ + "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" + ], + "settings": { + "foreground": "#FF5370" + } + }, + { + "name": "JSON Key - Level 7", + "scope": [ + "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" + ], + "settings": { + "foreground": "#7C4DFF" + } + }, + { + "name": "JSON Key - Level 8", + "scope": [ + "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" + ], + "settings": { + "foreground": "#91B859" + } + }, + { + "name": "Markdown - Plain", + "scope": [ + "text.html.markdown", + "punctuation.definition.list_item.markdown" + ], + "settings": { + "foreground": "#90A4AE" + } + }, + { + "name": "Markdown - Markup Raw Inline", + "scope": ["text.html.markdown markup.inline.raw.markdown"], + "settings": { + "foreground": "#7C4DFF" + } + }, + { + "name": "Markdown - Markup Raw Inline Punctuation", + "scope": [ + "text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown" + ], + "settings": { + "foreground": "#E7EAEC" + } + }, + { + "name": "Markdown - Line Break", + "scope": ["text.html.markdown meta.dummy.line-break"], + "settings": { + "foreground": "" + } + }, + { + "name": "Markdown - Heading", + "scope": [ + "markdown.heading", + "markup.heading | markup.heading entity.name", + "markup.heading.markdown punctuation.definition.heading.markdown" + ], + "settings": { + "foreground": "#91B859" + } + }, + { + "name": "Markup - Italic", + "scope": ["markup.italic"], + "settings": { + "fontStyle": "italic", + "foreground": "#FF5370" + } + }, + { + "name": "Markup - Bold", + "scope": ["markup.bold", "markup.bold string"], + "settings": { + "fontStyle": "bold", + "foreground": "#FF5370" + } + }, + { + "name": "Markup - Bold-Italic", + "scope": [ + "markup.bold markup.italic", + "markup.italic markup.bold", + "markup.quote markup.bold", + "markup.bold markup.italic string", + "markup.italic markup.bold string", + "markup.quote markup.bold string" + ], + "settings": { + "fontStyle": "bold", + "foreground": "#FF5370" + } + }, + { + "name": "Markup - Underline", + "scope": ["markup.underline"], + "settings": { + "fontStyle": "underline", + "foreground": "#F76D47" + } + }, + { + "name": "Markup - Strike", + "scope": ["markup.strike"], + "settings": { + "fontStyle": "strike", + "foreground": "" + } + }, + { + "name": "Markdown - Blockquote", + "scope": ["markup.quote punctuation.definition.blockquote.markdown"], + "settings": { + "foreground": "#E7EAEC" + } + }, + { + "name": "Markup - Quote", + "scope": ["markup.quote"], + "settings": { + "fontStyle": "italic", + "foreground": "" + } + }, + { + "name": "Markdown - Link", + "scope": ["string.other.link.title.markdown"], + "settings": { + "foreground": "#6182B8" + } + }, + { + "name": "Markdown - Link Description", + "scope": ["string.other.link.description.title.markdown"], + "settings": { + "foreground": "#7C4DFF" + } + }, + { + "name": "Markdown - Link Anchor", + "scope": ["constant.other.reference.link.markdown"], + "settings": { + "foreground": "#FFB62C" + } + }, + { + "name": "Markup - Raw Block", + "scope": ["markup.raw.block"], + "settings": { + "foreground": "#7C4DFF" + } + }, + { + "name": "Markdown - Fenced Bode Block Variable", + "scope": [ + "markup.fenced_code.block.markdown", + "markup.inline.raw.string.markdown" + ], + "settings": { + "foreground": "#90A4AE90" + } + }, + { + "name": "Markdown - Fenced Language", + "scope": ["variable.language.fenced.markdown"], + "settings": { + "foreground": "#E7EAEC" + } + }, + { + "name": "Markdown - Separator", + "scope": ["meta.separator"], + "settings": { + "fontStyle": "bold", + "foreground": "#E7EAEC" + } + }, + { + "name": "Markup - Table", + "scope": ["markup.table"], + "settings": { + "foreground": "#90A4AE" + } + } + ], + "colors": { + "focusBorder": "#FFFFFF00", + "scrollbar.shadow": "#FFFFFF00", + "editorLink.activeForeground": "#90A4AE", + "selection.background": "#80CBC440", + "progressBar.background": "#80CBC4", + "textLink.foreground": "#80CBC4", + "textLink.activeForeground": "#90A4AE", + "editorCursor.foreground": "#272727", + "editorRuler.foreground": "#B0BEC5", + "editorLineNumber.foreground": "#CFD8DC", + "editorLineNumber.activeForeground": "#627883", + "editorBracketMatch.border": "#27272750", + "editorBracketMatch.background": "#FFFFFF", + "editorWhitespace.foreground": "#f3f5fb", + "editor.background": "#ffffff", + "editor.foreground": "#546e7a", + "editor.lineHighlightBackground": "#CCD7DA50", + "editor.selectionBackground": "#80CBC440", + "editor.selectionHighlightBackground": "#80CBC400", + "editor.selectionHighlightBorder": "#B6D5E0", + "editor.snippetTabstopHighlightBackground": "#80CBC400", + "editor.findMatchBackground": "#fd800855", + "editor.findMatchHighlightBackground": "#B6D5E000", + "editor.findMatchBorder": "#fd800800", + "editor.findMatchHighlightBorder": "#B6D5E0", + "editorOverviewRuler.border": "#FFFFFF", + "editorHoverWidget.background": "#FFFFFF", + "editorHoverWidget.border": "#00000010", + "editorIndentGuide.background": "#f3f5fb", + "editorIndentGuide.activeBackground": "#e7e8eb", + "editorGroupHeader.tabsBackground": "#FFFFFF", + "editorGroup.border": "#f3f5fb", + "editorGutter.modifiedBackground": "#6182B860", + "editorGutter.addedBackground": "#91B85960", + "editorGutter.deletedBackground": "#E5393560", + "editorSuggestWidget.background": "#FFFFFF", + "editorSuggestWidget.foreground": "#90A4AE", + "editorSuggestWidget.highlightForeground": "#546e7a", + "editorSuggestWidget.selectedBackground": "#CCD7DA50", + "editorSuggestWidget.border": "#00000010", + "editorError.foreground": "#E5393570", + "editorWarning.foreground": "#91B85970", + "editorWidget.background": "#f7f8fb", + "editorWidget.resizeBorder": "#80CBC4", + "editorWidget.border": "", + "editorMarkerNavigation.background": "#90A4AE05", + "tab.activeBorder": "#3fc2a7", + "tab.unfocusedActiveBorder": "#90A4AE", + "tab.activeBackground": "#f3f5fb", + "tab.activeForeground": "#000000", + "tab.inactiveForeground": "#627883", + "tab.inactiveBackground": "#FFFFFF", + "tab.unfocusedActiveForeground": "#90A4AE", + "tab.border": "#FFFFFF", + "statusBar.noFolderBackground": "#FFFFFF", + "statusBar.border": "#e7e8eb", + "statusBar.background": "#f7f8fb", + "statusBar.foreground": "#7E939E", + "statusBar.debuggingBackground": "#7C4DFF", + "statusBar.debuggingForeground": "#FFFFFF", + "statusBarItem.hoverBackground": "#90A4AE20", + "activityBar.background": "#f7f8fb", + "activityBar.border": "#e7e8eb", + "activityBar.foreground": "#19b491", + "activityBar.inactiveForeground": "#a7beca", + "activityBarBadge.background": "#EA4224", + "activityBarBadge.foreground": "#ffffff", + "titleBar.activeBackground": "#e7e8eb", + "titleBar.activeForeground": "#3fc2a7", + "titleBar.inactiveBackground": "#f7f8fb", + "titleBar.inactiveForeground": "#627883", + "titleBar.border": "#e7e8eb", + "sideBar.background": "#f7f8fb", + "sideBar.foreground": "#627883", + "sideBar.border": "#e7e8eb", + "sideBarTitle.foreground": "#90A4AE", + "sideBarSectionHeader.background": "#f7f8fb", + "input.background": "#ffffff", + "input.foreground": "#90A4AE", + "input.placeholderForeground": "#90A4AE60", + "input.border": "#e7e8eb", + "inputValidation.errorBorder": "#E5393550", + "inputValidation.infoBorder": "#6182B850", + "inputValidation.warningBorder": "#FFB62C50", + "dropdown.background": "#FFFFFF", + "dropdown.border": "#00000010", + "list.hoverForeground": "#B1C7D3", + "list.hoverBackground": "#f7f8fb", + "list.activeSelectionBackground": "#f7f8fb", + "list.activeSelectionForeground": "#80CBC4", + "list.inactiveSelectionForeground": "#80CBC4", + "list.inactiveSelectionBackground": "#CCD7DA50", + "list.focusBackground": "#90A4AE20", + "list.focusForeground": "#90A4AE", + "list.highlightForeground": "#80CBC4", + "terminal.ansiWhite": "#C0C0C0", + "terminal.ansiBlack": "#000000", + "terminal.ansiBlue": "#0096FF", + "terminal.ansiCyan": "#19b491", + "terminal.ansiGreen": "#27ae60", + "terminal.ansiMagenta": "#9437FF", + "terminal.ansiRed": "#EA4224", + "terminal.ansiYellow": "#e67e22", + "terminal.ansiBrightWhite": "#EBEBEB", + "terminal.ansiBrightBlack": "#666666", + "terminal.ansiBrightBlue": "#70ACF7", + "terminal.ansiBrightCyan": "#3fc2a7", + "terminal.ansiBrightGreen": "#2ecc71", + "terminal.ansiBrightMagenta": "#BE7EE7", + "terminal.ansiBrightRed": "#FF4628", + "terminal.ansiBrightYellow": "#f39c12", + "scrollbarSlider.background": "#90A4AE20", + "scrollbarSlider.hoverBackground": "#90A4AE10", + "scrollbarSlider.activeBackground": "#80CBC4", + "widget.shadow": "#00000020", + "panel.border": "#e7e8eb", + "panel.background": "#f7f8fb", + "panel.dropBackground": "#90A4AE", + "panelTitle.inactiveForeground": "#90A4AE", + "panelTitle.activeForeground": "#16967a", + "panelTitle.activeBorder": "#3fc2a7", + "diffEditor.insertedTextBackground": "#91B85915", + "diffEditor.removedTextBackground": "#E5393520", + "notifications.background": "#FFFFFF", + "notifications.foreground": "#90A4AE", + "notificationLink.foreground": "#80CBC4", + "badge.background": "#CCD7DA30", + "badge.foreground": "#90A4AE", + "button.background": "#80CBC440", + "extensionButton.prominentBackground": "#91B85990", + "extensionButton.prominentHoverBackground": "#91B859", + "peekView.border": "#00000020", + "peekViewEditor.background": "#90A4AE05", + "peekViewTitle.background": "#90A4AE05", + "peekViewResult.background": "#90A4AE05", + "peekViewEditorGutter.background": "#90A4AE05", + "peekViewTitleDescription.foreground": "#90A4AE60", + "peekViewResult.matchHighlightBackground": "#80CBC440", + "peekViewEditor.matchHighlightBackground": "#80CBC440", + "debugToolBar.background": "#FFFFFF", + "pickerGroup.foreground": "#80CBC4", + "gitDecoration.deletedResourceForeground": "#E5393590", + "gitDecoration.conflictingResourceForeground": "#FFB62C90", + "gitDecoration.modifiedResourceForeground": "#6182B890", + "gitDecoration.untrackedResourceForeground": "#91B85990", + "gitDecoration.ignoredResourceForeground": "#62788390", + "peekViewResult.selectionBackground": "#62788370", + "breadcrumb.background": "#FFFFFF", + "breadcrumb.foreground": "#627883", + "breadcrumb.focusForeground": "#90A4AE", + "breadcrumb.activeSelectionForeground": "#80CBC4", + "breadcrumbPicker.background": "#f7f8fb", + "menu.background": "#FFFFFF", + "menu.foreground": "#90A4AE", + "menu.selectionBackground": "#CCD7DA50", + "menu.selectionForeground": "#80CBC4", + "menu.selectionBorder": "#CCD7DA50", + "menu.separatorBackground": "#90A4AE", + "menubar.selectionBackground": "#CCD7DA50", + "menubar.selectionForeground": "#80CBC4", + "menubar.selectionBorder": "#CCD7DA50", + "settings.dropdownForeground": "#90A4AE", + "settings.dropdownBackground": "#f7f8fb", + "settings.numberInputForeground": "#90A4AE", + "settings.numberInputBackground": "#f7f8fb", + "settings.textInputForeground": "#90A4AE", + "settings.textInputBackground": "#f7f8fb", + "settings.headerForeground": "#80CBC4", + "settings.modifiedItemIndicator": "#80CBC4", + "settings.checkboxBackground": "#f7f8fb", + "settings.checkboxForeground": "#90A4AE" + } +}