feat: Add support for custom menus and menubar on Windows/Linux (vscode v1.26.0)
Close #228
This commit is contained in:
parent
e98cb888bf
commit
681db679b9
2 changed files with 25 additions and 1 deletions
|
@ -96,6 +96,18 @@
|
||||||
"panelTitle.activeBorder": {
|
"panelTitle.activeBorder": {
|
||||||
"alpha": 100,
|
"alpha": 100,
|
||||||
"value": null
|
"value": null
|
||||||
|
},
|
||||||
|
"breadcrumb.activeSelectionForeground": {
|
||||||
|
"alpha": 100,
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"menu.selectionForeground": {
|
||||||
|
"alpha": 100,
|
||||||
|
"value": null
|
||||||
|
},
|
||||||
|
"menubar.selectionForeground": {
|
||||||
|
"alpha": 100,
|
||||||
|
"value": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"changelog": {
|
"changelog": {
|
||||||
|
|
|
@ -823,6 +823,18 @@
|
||||||
"gitDecoration.untrackedResourceForeground": "{{variant.scheme.base.green}}90",
|
"gitDecoration.untrackedResourceForeground": "{{variant.scheme.base.green}}90",
|
||||||
"gitDecoration.ignoredResourceForeground": "{{variant.scheme.sidebarForeground}}90",
|
"gitDecoration.ignoredResourceForeground": "{{variant.scheme.sidebarForeground}}90",
|
||||||
"peekViewResult.selectionBackground": "{{variant.scheme.sidebarForeground}}70",
|
"peekViewResult.selectionBackground": "{{variant.scheme.sidebarForeground}}70",
|
||||||
"settings.modifiedItemForeground": "{{commons.accents.Teal}}"
|
"settings.modifiedItemForeground": "{{commons.accents.Teal}}",
|
||||||
|
"breadcrumb.foreground": "{{variant.scheme.sidebarForeground}}",
|
||||||
|
"breadcrumb.focusForeground": "{{variant.scheme.foreground}}",
|
||||||
|
"breadcrumb.activeSelectionForeground": "{{commons.accents.Teal}}",
|
||||||
|
"breadcrumbPicker.background": "{{variant.scheme.backgroundAlt}}",
|
||||||
|
"menu.background": "{{variant.scheme.background}}",
|
||||||
|
"menu.foreground": "{{variant.scheme.sidebarForeground}}",
|
||||||
|
"menu.selectionBackground": "{{variant.scheme.inactiveSelectionBackground}}",
|
||||||
|
"menu.selectionForeground": "{{commons.accents.Teal}}",
|
||||||
|
"menu.selectionBorder": "{{variant.scheme.inactiveSelectionBackground}}",
|
||||||
|
"menubar.selectionBackground": "{{variant.scheme.inactiveSelectionBackground}}",
|
||||||
|
"menubar.selectionForeground": "{{commons.accents.Teal}}",
|
||||||
|
"menubar.selectionBorder": "{{variant.scheme.inactiveSelectionBackground}}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue