Skip to content

Commit 523ecc4

Browse files
smbkrpathwave
authored andcommitted
Add colours "color-modes" to ayu_light theme (helix-editor#4109)
* Rename "dark gray" to "light gray" * Add colours for statusline modes * Use UI background for inactive panes
1 parent cacb0a7 commit 523ecc4

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

runtime/themes/ayu_light.toml

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,22 @@
3434

3535
# Interface
3636
"ui.background"= { bg = "background" }
37-
"ui.cursor" = { bg = "yellow", fg = "dark_gray" }
37+
"ui.cursor" = { bg = "yellow", fg = "light_gray" }
3838
"ui.cursor.match" = { fg = "orange" }
39-
"ui.linenr" = { fg = "dark_gray" }
39+
"ui.linenr" = { fg = "light_gray" }
4040
"ui.linenr.selected" = { fg = "orange" }
4141
"ui.cursorline" = { bg = "black" }
42-
"ui.statusline" = { fg = "foreground", bg = "black" }
4342
"ui.popup" = { bg = "black" }
44-
"ui.window" = { fg = "dark_gray" }
43+
"ui.window" = { fg = "light_gray" }
4544
"ui.help" = { fg = "foreground", bg = "black" }
4645
"ui.text" = { fg = "foreground" }
47-
"ui.text.focus" = { bg = "dark_gray", fg = "foreground" }
46+
"ui.text.focus" = { bg = "light_gray", fg = "foreground" }
4847
"ui.text.info" = { fg = "foreground" }
49-
"ui.virtual.whitespace" = { fg = "dark_gray" }
48+
"ui.virtual.whitespace" = { fg = "light_gray" }
5049
"ui.virtual.ruler" = { bg = "black" }
5150
"ui.menu" = { fg = "foreground", bg = "black" }
5251
"ui.menu.selected" = { bg = "orange", fg = "background" }
53-
"ui.selection" = { bg = "dark_gray" }
52+
"ui.selection" = { bg = "light_gray" }
5453
"warning" = { fg = "yellow" }
5554
"error" = { fg = "red", modifiers = ["bold"] }
5655
"info" = { fg = "blue", modifiers = ["bold"] }
@@ -59,23 +58,32 @@
5958
"diagnostic.info"= { fg = "blue", modifiers = ["underlined"] }
6059
"diagnostic.warning"= { fg = "yellow", modifiers = ["underlined"] }
6160
"diagnostic.error"= { fg = "red", modifiers = ["underlined"] }
62-
"ui.bufferline" = { fg = "gray", bg = "dark_gray" }
63-
"ui.bufferline.active" = { fg = "dark", bg = "background" }
61+
"ui.bufferline" = { fg = "ui_foreground", bg = "ui_background" }
62+
"ui.bufferline.active" = { fg = "ui_background", bg = "ui_foreground" }
63+
"ui.statusline" = { fg = "ui_foreground", bg = "ui_background" }
64+
"ui.statusline.inactive" = { fg = "ui_foreground", bg = "ui_background" }
65+
"ui.statusline.normal" = { fg = "white", bg = "light_blue" }
66+
"ui.statusline.insert" = { fg = "white", bg = "orange" }
67+
"ui.statusline.select" = { fg = "white", bg = "magenta" }
6468

6569
"special" = { fg = "orange" }
6670

6771
[palette]
6872
background = "#fcfcfc"
6973
foreground = "#5c6166"
7074

75+
ui_foreground = "#8a9199"
76+
ui_background = "#f8f9fa"
77+
7178
black = "#e7eaed"
79+
white = "#fcfcfc"
7280
blue = "#399ee6"
81+
light_blue = "#55b4d4"
7382
cyan = "#478acc"
74-
dark_gray = "#e7eaed"
83+
light_gray = "#e7eaed"
7584
gray = "#787b8099"
7685
green = "#86b300"
7786
magenta = "#a37acc"
7887
orange = "#fa8d3e"
7988
red = "#f07171"
8089
yellow = "#ffaa33"
81-
dark = "#131721"

0 commit comments

Comments
 (0)