Skip to content

Commit 280aae2

Browse files
author
Matt Parrish
committed
fix(Colors): Leverage red and green colors that are actually red and green
1 parent 49df777 commit 280aae2

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

index.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports.onWindow = browserWindow =>
22
browserWindow.setVibrancy("ultra-dark");
33

4-
const backgroundColor = "rgba(0, 0, 0, .65)";
4+
const backgroundColor = "rgba(0, 0, 0, .70)";
55
const overlap = "rgba(0, 0, 0, .15)";
66

77
const colors = {
@@ -16,18 +16,20 @@ const colors = {
1616
"terminal.ansiBlack": "#011627",
1717
"terminal.ansiBlue": "#82AAFF",
1818
"terminal.ansiCyan": "#7fdbca",
19-
"terminal.ansiGreen": "#ba67db",
19+
"terminal.ansiGreen": "#addb67",
20+
"terminal.ansiRed": "#EF5350",
2021
"terminal.ansiMagenta": "#C792EA",
2122
"terminal.ansi#5f7e97": "#7fdbca",
22-
"terminal.ansiYellow": "#addb67",
23+
"terminal.ansiYellow": "#e2b93d",
2324
"terminal.ansiBrightWhite": "#ffffff",
2425
"terminal.ansiBrightBlack": "#575656",
2526
"terminal.ansiBrightBlue": "#82AAFF",
2627
"terminal.ansiBrightCyan": "#7fdbca",
28+
"terminal.ansiBrightRed": "#EF5350",
2729
"terminal.ansiBrightGreen": "#addb67",
2830
"terminal.ansiBrightMagenta": "#C792EA",
2931
"terminal.ansiBright#5f7e97": "#7fdbca",
30-
"terminal.ansiBrightYellow": "#addb67"
32+
"terminal.ansiBrightYellow": "#ffca28"
3133
};
3234

3335
exports.decorateConfig = config =>
@@ -38,15 +40,15 @@ exports.decorateConfig = config =>
3840
cursorColor: colors["editorCursor.foreground"],
3941
colors: {
4042
black: colors["terminal.ansiBlack"],
41-
red: colors["terminal.ansiMagenta"],
43+
red: colors["terminal.ansiRed"],
4244
green: colors["terminal.ansiGreen"],
4345
yellow: colors["terminal.ansiYellow"],
4446
blue: colors["terminal.ansiBlue"],
4547
magenta: colors["terminal.ansiMagenta"],
4648
cyan: colors["terminal.ansiCyan"],
4749
white: colors["terminal.ansiBrightWhite"],
4850
lightBlack: colors["terminal.ansiBrightBlack"],
49-
lightRed: colors["terminal.ansiBrightMagenta"],
51+
lightRed: colors["terminal.ansiBrightRed"],
5052
lightGreen: colors["terminal.ansiBrightGreen"],
5153
lightYellow: colors["terminal.ansiBrightYellow"],
5254
lightBlue: colors["terminal.ansiBrightBlue"],

0 commit comments

Comments
 (0)