diff options
author | Rohan Jain | 2022-03-11 12:19:21 +0000 |
---|---|---|
committer | GitHub | 2022-03-11 12:19:21 +0000 |
commit | cf8f59ddd0fa6a18b52fc14cf1f3722b494a5be3 (patch) | |
tree | c1fb634d8adff266d0604373f4bbf9791b5e68db /runtime | |
parent | 98851d1594e712c3a222fa6624b2aa89176464c6 (diff) |
theme: Use distinct colors for match pair and cursor for gruvbox (#1791)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/themes/gruvbox.toml | 2 | ||||
-rw-r--r-- | runtime/themes/gruvbox_light.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/themes/gruvbox.toml b/runtime/themes/gruvbox.toml index a976a9bd..f27b9934 100644 --- a/runtime/themes/gruvbox.toml +++ b/runtime/themes/gruvbox.toml @@ -50,7 +50,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 = "bg2" } "ui.menu" = { fg = "fg1", bg = "bg2" } "ui.menu.selected" = { fg = "bg2", bg = "blue1", modifiers = ["bold"] } diff --git a/runtime/themes/gruvbox_light.toml b/runtime/themes/gruvbox_light.toml index 81ea7fd1..ab8325c0 100644 --- a/runtime/themes/gruvbox_light.toml +++ b/runtime/themes/gruvbox_light.toml @@ -51,7 +51,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 = "bg2" } "ui.menu" = { fg = "fg1", bg = "bg2" } "ui.menu.selected" = { fg = "bg2", bg = "blue1", modifiers = ["bold"] } |