Skip to content

Commit e9d0645

Browse files
authored
Adjusted hex themes for new gutter diff colors (#4990)
* added 2 themes * diff feature fixes adjusted the skin to better work with the new diff coloring features propagates to child skins like - hex_toxic * fine tuning so it all is a bit softer * fine tuning to be softer * added new version, lavender
1 parent 326a0da commit e9d0645

File tree

3 files changed

+55
-19
lines changed

3 files changed

+55
-19
lines changed

runtime/themes/hex_lavender.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
inherits = "hex_steel"
2+
3+
[palette]
4+
t1 = "#0e0e0d"
5+
t2 = "#121311"
6+
t3 = "#2b3444" #
7+
t4 = "#61586f"
8+
t5 = "#686e73"
9+
t6 = "#878480"
10+
t7 = "#897dca"
11+
t8 = "#7b89a3"
12+
t9 = "#bcb6ba"
13+
t10 = "#9db2b8"
14+
t11 = "#a0c7cf"
15+
16+
highlight = "#ff2e5f"
17+
highlight_two = "#0affa9"
18+
highlight_three = "#29bbff"
19+
20+
black = "#000000"
21+
22+
selection = "#290019"
23+
24+
comment = "#9aacfe"
25+
comment_doc = "#0affa9"
26+
27+
error = "#ff0900"
28+
warning = "#ffbf00"
29+
display = "#57ff89"
30+
info = "#dad7d5"
31+
#

runtime/themes/hex_steel.toml

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
"comment" = { fg = "highlight_three" }
2-
"comment.block.documentation" = { bg = "t4", modifiers = ["italic"] }
1+
"comment" = { fg = "comment" }
2+
"comment.block.documentation" = { bg = "comment_doc", modifiers = ["italic"] }
33

44
"constant" = { fg = "t11" }
55
"function" = { fg = "t10" }
@@ -20,18 +20,19 @@
2020
"variable" = { fg = "t4" }
2121
"label" = { fg = "t4" }
2222

23-
"diff.plus" = { fg = "t4" }
24-
"diff.delta" = { fg = "t4" }
25-
"diff.minus" = { fg = "t4" }
23+
"diff.plus" = { fg = "diff_plus" }
24+
"diff.delta" = { fg = "diff_delta" }
25+
"diff.delta.moved" = { fg = "diff_delta_moved" }
26+
"diff.minus" = { fg = "diff_minus" }
2627

2728
"ui.cursor.insert" = { fg = "t2", bg = "highlight" }
2829
"ui.cursor.select" = { fg = "t2", bg = "highlight_two" }
2930
"ui.cursor" = { fg = "t1", bg = "highlight_three" }
30-
"ui.cursor.match" = { fg = "highlight", bg = "t1", modifiers = ["bold"] }
31+
"ui.cursor.match" = { fg = "highlight", bg = "selection", modifiers = ["bold"] }
3132

32-
"ui.linenr" = { fg = "t3", bg = "t1" }
33-
"ui.linenr.selected" = { fg = "highlight_three", bg = "t1" }
34-
"ui.gutter" = { bg = "t1" }
33+
"ui.linenr" = { fg = "t3", bg = "t2" }
34+
"ui.linenr.selected" = { fg = "highlight_three", bg = "t2" }
35+
"ui.gutter" = { bg = "t2" }
3536

3637
"ui.background" = { fg = "t4", bg = "t2" }
3738
"ui.background.separator" = { fg = "t3" }
@@ -76,8 +77,8 @@
7677
"markup.raw" = { fg = "t4" }
7778

7879
[palette]
79-
t1 = "#0f0b0b"
80-
t2 = "#161010"
80+
t1 = "#0e0e0d"
81+
t2 = "#1d1e1b"
8182
t3 = "#5b5555"
8283
t4 = "#656869"
8384
t5 = "#727b7c"
@@ -95,11 +96,15 @@ highlight_three = "#d4d987"
9596
selection = "#032d4a"
9697

9798
black = "#000000"
98-
99-
comment = "#396884"
99+
comment = "#d4d987"
100100
comment_doc = "#234048"
101101

102102
error = "#ff0900"
103103
warning = "#ffbf00"
104-
display = "#57ff89"
104+
display = "#42baff"
105105
info = "#dad7d5"
106+
107+
diff_minus = "#ff0900"
108+
diff_delta = "#0078bd"
109+
diff_plus = "#87a800"
110+
diff_delta_moved = "#0048bd"

runtime/themes/hex_toxic.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ inherits = "hex_steel"
22

33
[palette]
44
t1 = "#101719"
5-
t2 = "#152432"
5+
t2 = "#1b2a32"
66
t3 = "#4b5968"
77
t4 = "#8792ab"
88
t5 = "#6f91bc"
@@ -13,15 +13,15 @@ t9 = "#b3ccd0"
1313
t10 = "#b0d4d8"
1414
t11 = "#ffbf52"
1515

16-
highlight = "#ff2e5f"
16+
highlight = "#ff0a50"
1717
highlight_two = "#0affa9"
18-
highlight_three = "#d7ff52"
18+
highlight_three = "#f8ed8b"
1919

2020
black = "#000000"
2121

22-
selection = "#290019"
22+
selection = "#382e1e"
2323

24-
comment = "#396884"
24+
comment = "#61bdd1"
2525
comment_doc = "#234048"
2626

2727
error = "#ff0900"

0 commit comments

Comments
 (0)