diff --git a/CHANGELOG.md b/CHANGELOG.md index dd7633f..15b543d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Release Notes +## 0.8.8 +`2022-06-30` +- Add higher contrast settings example to README + ## 0.8.7 `2022-06-29` - Debug icons updates diff --git a/README.md b/README.md index 4a00899..b59b78d 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,38 @@ Paste this into your [settings.json](https://code.visualstudio.com/docs/getstart } ``` ## Customization Settings Examples +#### Higher Contrast Settings +The below can by no means officially represent high contrast but they may serve as a starting point. This assumes that the darker Tokyo Night version is being used. +```javascript +"workbench.colorCustomizations": { + "[Tokyo Night]": { + "foreground": "#959cbd", + "panelTitle.activeBorder": "#3d59a1", + "panelTitle.activeForeground": "#bdc7f0", + "panelTitle.inactiveForeground": "#959cbd", + "tab.activeForeground": "#bdc7f0", + "tab.inactiveForeground": "#959cbd", + "breadcrumb.foreground": "#959cbd", + "breadcrumb.focusForeground": "#bdc7f0", + "breadcrumb.activeSelectionForeground": "#bdc7f0", + "statusBar.foreground": "#bdc7f0", + "list.focusForeground": "#bdc7f0", + "list.hoverForeground": "#bdc7f0", + "list.activeSelectionForeground": "#bdc7f0", + "list.inactiveSelectionForeground": "#bdc7f0", + "list.inactiveSelectionBackground": "#202330", + "sideBar.foreground": "#959cbd", + "dropdown.foreground": "#959cbd", + "menu.foreground":"#bdc7f0", + "menubar.selectionForeground":"#bdc7f0", + "input.foreground": "#959cbd", + "input.placeholderForeground": "#959cbd", + "activityBar.foreground": "#bdc7f0", + "activityBar.inactiveForeground": "#787c99", + "gitDecoration.ignoredResourceForeground": "#696d87", + }, +} +``` #### Brightening Codelens text I prefer my Codelens text fade into the background unless hovered over, but if you'd like a higher contrast, add this to your settings.json: ```javascript