Skip to content

Commit

Permalink
Revise the color for ui.cursor.match (helix-editor#1862)
Browse files Browse the repository at this point in the history
- bogster.toml
 - solarized_dark.toml
 - solarized_light.toml
 - spacebones_light.toml
  • Loading branch information
shnarazk authored Mar 25, 2022
1 parent 22ba668 commit 309f2c2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions runtime/themes/bogster.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@

"ui.selection" = { bg = "#313f4e" }
# "ui.cursor.match" # TODO might want to override this because dimmed is not widely supported
"ui.cursor.match" = { fg = "#313f4e", bg = "#dc7759" }
"ui.cursor" = { fg = "#ABB2BF", modifiers = ["reversed"] }
"ui.menu.selected" = { fg = "#e5ded6", bg = "#313f4e" }

Expand Down
2 changes: 1 addition & 1 deletion runtime/themes/solarized_dark.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"ui.cursor" = {fg = "base02", bg = "cyan"}
"ui.cursor.insert" = {fg = "base03", bg = "base3"}
# 当前光标匹配的标点符号
"ui.cursor.match" = {modifiers = ["reversed"]}
"ui.cursor.match" = { fg = "base03", bg = "base00" }

"warning" = { fg = "orange", modifiers= ["bold", "underlined"] }
"error" = { fg = "red", modifiers= ["bold", "underlined"] }
Expand Down
2 changes: 1 addition & 1 deletion runtime/themes/solarized_light.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"ui.cursor" = {fg = "base02", bg = "cyan"}
"ui.cursor.insert" = {fg = "base03", bg = "base3"}
# 当前光标匹配的标点符号
"ui.cursor.match" = {modifiers = ["reversed"]}
"ui.cursor.match" = { fg = "base02", bg = "light-gray" }

"warning" = { fg = "orange", modifiers= ["bold", "underlined"] }
"error" = { fg = "red", modifiers= ["bold", "underlined"] }
Expand Down
2 changes: 1 addition & 1 deletion runtime/themes/spacebones_light.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"ui.text.focus" = { fg = "fg1" }
"ui.selection" = { bg = "bg3", modifiers = ["reversed"] }
"ui.cursor.primary" = { modifiers = ["reversed"] }
"ui.cursor.match" = { modifiers = ["reversed"] }
"ui.cursor.match" = { bg = "bg3" }
"ui.menu" = { fg = "fg1", bg = "bg2" }
"ui.menu.selected" = { fg = "#655370", bg = "#d1dcdf", modifiers = ["bold"] }

Expand Down

0 comments on commit 309f2c2

Please sign in to comment.