Inherit editor inactive selection colors in terminal (Fix #158899) (#158950)

* Inherit editor inactive selection colors in terminal (Fix #158899)

* Remove unused import

* Add terminal inactive selection colors to default dark and light themes

* Update monokai terminal inactive selection

* Merge branch 'main' into ddossett/thoughtful-butterfly
This commit is contained in:
David Dossett 2022-08-24 16:00:34 -07:00 committed by GitHub
parent 49983af832
commit 52f8bfaf5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View file

@ -20,7 +20,8 @@
"sideBarSectionHeader.background": "#0000", "sideBarSectionHeader.background": "#0000",
"sideBarSectionHeader.border": "#ccc3", "sideBarSectionHeader.border": "#ccc3",
"tab.lastPinnedBorder": "#ccc3", "tab.lastPinnedBorder": "#ccc3",
"list.activeSelectionIconForeground": "#FFF" "list.activeSelectionIconForeground": "#FFF",
"terminal.inactiveSelectionBackground": "#3A3D41",
}, },
"tokenColors": [ "tokenColors": [
{ {

View file

@ -26,7 +26,8 @@
"notebook.selectedCellBackground": "#c8ddf150", "notebook.selectedCellBackground": "#c8ddf150",
"statusBarItem.errorBackground": "#c72e0f", "statusBarItem.errorBackground": "#c72e0f",
"list.activeSelectionIconForeground": "#FFF", "list.activeSelectionIconForeground": "#FFF",
"list.focusAndSelectionOutline": "#90C2F9" "list.focusAndSelectionOutline": "#90C2F9",
"terminal.inactiveSelectionBackground": "#E5EBF1",
}, },
"tokenColors": [ "tokenColors": [
{ {

View file

@ -59,7 +59,8 @@
"terminal.ansiBrightBlue": "#819aff", // hue shifted #AE81FF "terminal.ansiBrightBlue": "#819aff", // hue shifted #AE81FF
"terminal.ansiBrightMagenta": "#AE81FF", "terminal.ansiBrightMagenta": "#AE81FF",
"terminal.ansiBrightCyan": "#66D9EF", "terminal.ansiBrightCyan": "#66D9EF",
"terminal.ansiBrightWhite": "#f8f8f2" "terminal.ansiBrightWhite": "#f8f8f2",
"terminal.inactiveSelectionBackground": "#676b7140"
}, },
"tokenColors": [ "tokenColors": [
{ {