Skip to content

Commit 2dbfa85

Browse files
committed
Add integrated terminal colors
1 parent 243ab63 commit 2dbfa85

3 files changed

Lines changed: 28 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable [changes](http://keepachangelog.com) to the "GitHub Plus Theme" extension will be documented in this file.
33

4+
## [1.4.0] - 2021-08-26
5+
### Added
6+
- Add integrated terminal colors
7+
48
## [1.2.1] - 2019-08-27
59
### Added
610
- Add inputOption.activeBorder color

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "github-plus-theme",
33
"displayName": "GitHub Plus Theme",
44
"description": "A GitHub inspired color theme for VSCode code and interface!",
5-
"version": "1.3.1",
5+
"version": "1.4.0",
66
"publisher": "thenikso",
77
"icon": "icon.png",
88
"repository": {

themes/github-plus-theme.json

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"type": "light",
3-
// Reference https://code.visualstudio.com/docs/getstarted/theme-color-reference
3+
// Reference https://code.visualstudio.com/api/references/theme-color
44
"colors": {
55
"focusBorder": "#fafbfc",
66
"inputOption.activeBorder": "#e36209",
@@ -39,9 +39,29 @@
3939
"tab.inactiveForeground": "#586069",
4040
"scrollbar.shadow": "#00000000",
4141
"quickInputList.focusBackground": "#e7e6e5",
42-
"quickInputList.focusForeground": "#24292e"
42+
"quickInputList.focusForeground": "#24292e",
43+
44+
"terminal.background": "#ffffff",
45+
"terminal.foreground": "#333333",
46+
"terminal.ansiBlack": "#414141",
47+
"terminal.ansiRed": "#D73A49",
48+
"terminal.ansiGreen": "#8EC454",
49+
"terminal.ansiYellow": "#F7C400",
50+
"terminal.ansiBlue": "#005CC5",
51+
"terminal.ansiMagenta": "#FF73FD",
52+
"terminal.ansiCyan": "#0BC7D7",
53+
"terminal.ansiWhite": "#BFBFBF",
54+
"terminal.ansiBrightBlack": "#989898",
55+
"terminal.ansiBrightRed": "#FF2224",
56+
"terminal.ansiBrightGreen": "#35D61C",
57+
"terminal.ansiBrightYellow": "#F7E900",
58+
"terminal.ansiBrightBlue": "#001EED",
59+
"terminal.ansiBrightMagenta": "#FF00FF",
60+
"terminal.ansiBrightCyan": "#69F3F7",
61+
"terminal.ansiBrightWhite": "#E0E0E0",
62+
"terminalCursor.foreground": "#363636"
4363
},
44-
// User command "Inspect TM Scopes" to know which scope to color
64+
// User command "Inspect Editor Tokens and Scopes" to know which scope to color
4565
"tokenColors": [
4666
{
4767
"settings": {

0 commit comments

Comments
 (0)