Skip to content

Commit 166d653

Browse files
authored
fix(astrodark): syntax and ui color re-balance (#67)
* fix(astrodark): syntax and ui color re-balance * fix(astrodark): change term colors
1 parent 5421df0 commit 166d653

File tree

2 files changed

+29
-29
lines changed

2 files changed

+29
-29
lines changed

extras/wezterm_astrodark.lua

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,29 @@ local c = {
1010
--------------------------------
1111
--- Syntax
1212
--------------------------------
13-
c.syntax.red = "#FE8A90"
14-
c.syntax.blue = "#63B7FC"
15-
c.syntax.green = "#89BF63"
16-
c.syntax.yellow = "#E1AA41"
17-
c.syntax.purple = "#DB98EE"
18-
c.syntax.cyan = "#1BC5B9"
19-
c.syntax.orange = "#FE915E"
13+
c.syntax.red = "#FF838B"
14+
c.syntax.orange = "#F5983A"
15+
c.syntax.yellow = "#DFAB25"
16+
c.syntax.green = "#87C05F"
17+
c.syntax.cyan = "#4AC2B8"
18+
c.syntax.blue = "#5EB7FF"
19+
c.syntax.purple = "#DD97F1"
2020
c.syntax.text = "#ADB0BB"
2121
c.syntax.comment = "#696C76"
2222
c.syntax.mute = "#595C66"
2323

2424
--------------------------------
2525
--- UI
2626
--------------------------------
27-
c.ui.red = "#F37880"
28-
c.ui.blue = "#50A4E9"
29-
c.ui.green = "#75AD47"
27+
c.ui.red = "#F8747E"
28+
c.ui.orange = "#EB8332"
3029
c.ui.yellow = "#D09214"
31-
c.ui.purple = "#CC83E3"
30+
c.ui.green = "#75AD47"
3231
c.ui.cyan = "#00B298"
33-
c.ui.orange = "#EB8331"
32+
c.ui.blue = "#50A4E9"
33+
c.ui.purple = "#CC83E3"
3434

35-
c.ui.accent = "#EB8331"
35+
c.ui.accent = "#EB8332"
3636

3737
c.ui.tabline = "#111317"
3838
c.ui.winbar = "#797D87"

lua/astrotheme/palettes/astrodark.lua

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,29 @@ local c = {
88
--------------------------------
99
--- Syntax
1010
--------------------------------
11-
c.syntax.red = "#FE8A90"
12-
c.syntax.blue = "#63B7FC"
13-
c.syntax.green = "#89BF63"
14-
c.syntax.yellow = "#E1AA41"
15-
c.syntax.purple = "#DB98EE"
16-
c.syntax.cyan = "#1BC5B9"
17-
c.syntax.orange = "#FE915E"
11+
c.syntax.red = "#FF838B"
12+
c.syntax.orange = "#F5983A"
13+
c.syntax.yellow = "#DFAB25"
14+
c.syntax.green = "#87C05F"
15+
c.syntax.cyan = "#4AC2B8"
16+
c.syntax.blue = "#5EB7FF"
17+
c.syntax.purple = "#DD97F1"
1818
c.syntax.text = "#ADB0BB"
1919
c.syntax.comment = "#696C76"
2020
c.syntax.mute = "#595C66"
2121

2222
--------------------------------
2323
--- UI
2424
--------------------------------
25-
c.ui.red = "#F37880"
26-
c.ui.blue = "#50A4E9"
27-
c.ui.green = "#75AD47"
25+
c.ui.red = "#F8747E"
26+
c.ui.orange = "#EB8332"
2827
c.ui.yellow = "#D09214"
29-
c.ui.purple = "#CC83E3"
28+
c.ui.green = "#75AD47"
3029
c.ui.cyan = "#00B298"
31-
c.ui.orange = "#EB8331"
30+
c.ui.blue = "#50A4E9"
31+
c.ui.purple = "#CC83E3"
3232

33-
c.ui.accent = "#EB8331"
33+
c.ui.accent = "#EB8332"
3434

3535
c.ui.tabline = "#111317"
3636
c.ui.winbar = "#797D87"
@@ -58,7 +58,7 @@ c.ui.text_match = c.ui.accent
5858
--- terminal
5959
--------------------------------
6060
c.term.black = c.ui.tabline
61-
c.term.bright_black = c.ui.base
61+
c.term.bright_black = c.ui.tabline
6262

6363
c.term.red = c.syntax.red
6464
c.term.bright_red = c.syntax.red
@@ -78,8 +78,8 @@ c.term.bright_purple = c.syntax.purple
7878
c.term.cyan = c.syntax.cyan
7979
c.term.bright_cyan = c.syntax.cyan
8080

81-
c.term.white = c.ui.base
82-
c.term.bright_white = c.ui.base
81+
c.term.white = c.ui.text
82+
c.term.bright_white = c.ui.text_active
8383

8484
c.term.background = c.ui.base
8585
c.term.foreground = c.ui.text

0 commit comments

Comments
 (0)