Skip to content

Commit

Permalink
Add integrated terminal colors
Browse files Browse the repository at this point in the history
  • Loading branch information
thenikso committed Aug 26, 2021
1 parent 243ab63 commit 2dbfa85
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable [changes](http://keepachangelog.com) to the "GitHub Plus Theme" extension will be documented in this file.

## [1.4.0] - 2021-08-26
### Added
- Add integrated terminal colors

## [1.2.1] - 2019-08-27
### Added
- Add inputOption.activeBorder color
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "github-plus-theme",
"displayName": "GitHub Plus Theme",
"description": "A GitHub inspired color theme for VSCode code and interface!",
"version": "1.3.1",
"version": "1.4.0",
"publisher": "thenikso",
"icon": "icon.png",
"repository": {
Expand Down
26 changes: 23 additions & 3 deletions themes/github-plus-theme.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "light",
// Reference https://code.visualstudio.com/docs/getstarted/theme-color-reference
// Reference https://code.visualstudio.com/api/references/theme-color
"colors": {
"focusBorder": "#fafbfc",
"inputOption.activeBorder": "#e36209",
Expand Down Expand Up @@ -39,9 +39,29 @@
"tab.inactiveForeground": "#586069",
"scrollbar.shadow": "#00000000",
"quickInputList.focusBackground": "#e7e6e5",
"quickInputList.focusForeground": "#24292e"
"quickInputList.focusForeground": "#24292e",

"terminal.background": "#ffffff",
"terminal.foreground": "#333333",
"terminal.ansiBlack": "#414141",
"terminal.ansiRed": "#D73A49",
"terminal.ansiGreen": "#8EC454",
"terminal.ansiYellow": "#F7C400",
"terminal.ansiBlue": "#005CC5",
"terminal.ansiMagenta": "#FF73FD",
"terminal.ansiCyan": "#0BC7D7",
"terminal.ansiWhite": "#BFBFBF",
"terminal.ansiBrightBlack": "#989898",
"terminal.ansiBrightRed": "#FF2224",
"terminal.ansiBrightGreen": "#35D61C",
"terminal.ansiBrightYellow": "#F7E900",
"terminal.ansiBrightBlue": "#001EED",
"terminal.ansiBrightMagenta": "#FF00FF",
"terminal.ansiBrightCyan": "#69F3F7",
"terminal.ansiBrightWhite": "#E0E0E0",
"terminalCursor.foreground": "#363636"
},
// User command "Inspect TM Scopes" to know which scope to color
// User command "Inspect Editor Tokens and Scopes" to know which scope to color
"tokenColors": [
{
"settings": {
Expand Down

0 comments on commit 2dbfa85

Please sign in to comment.