Skip to content

Commit 4c5df76

Browse files
Add text color related workbench theme keys (#159)
This PR adds some workbench color keys for text related elements that were not supported by Nord yet. The commit in the VS Code repository (1) (Micorosft/vscode@752acd50) added multiple new theme key in through microsoft/vscode#26298 (2) that was merged over 2 years ago and released for the first time in stable version 1.13.0 (3) but were never mentioned in the release notes. The following theme keys have now been added: - `textBlockQuote.background` - Background color for block quotes in text. - `textBlockQuote.border` - Right-side border color for block quotes in text. - `textLink.activeForeground` - Foreground color for links in text when clicked on and on mouse hover. - `textLink.foreground` - Foreground color for links in text. - `textPreformat.foreground` - Foreground color for preformatted text segments like inline code. - `textSeparator.foreground` - Color for text separators. References: (1) https://github.com/microsoft/vscode/blame/752acd504206f00ffe4ed101c2496540d0197f56/src/vs/platform/theme/common/colorRegistry.ts#L164-L170 (2) microsoft/vscode#26298 (3) https://code.visualstudio.com/updates/v1_13 Resolves GH-154
1 parent b8b722e commit 4c5df76

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

themes/nord-color-theme.json

+6
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,13 @@
230230
"terminal.ansiBrightMagenta": "#b48ead",
231231
"terminal.ansiBrightCyan": "#8fbcbb",
232232
"terminal.ansiBrightWhite": "#eceff4",
233+
"textBlockQuote.background": "#3b4252",
234+
"textBlockQuote.border": "#81a1c1",
233235
"textCodeBlock.background": "#4c566a",
236+
"textLink.activeForeground": "#88c0d0",
237+
"textLink.foreground": "#88c0d0",
238+
"textPreformat.foreground": "#8fbcbb",
239+
"textSeparator.foreground": "#eceff4",
234240
"titleBar.activeBackground": "#2e3440",
235241
"titleBar.activeForeground": "#d8dee9",
236242
"titleBar.border": "#2e344000",

0 commit comments

Comments
 (0)