diff options
author | André Sá | 2022-11-29 23:30:06 +0000 |
---|---|---|
committer | GitHub | 2022-11-29 23:30:06 +0000 |
commit | 664d08e70d02a3e3917ddc69e66b5fc826a0caf1 (patch) | |
tree | db69067c0aad7d45d2e6a28e3d371eaba07df1b5 /runtime/themes | |
parent | 607c74efde40812caa6379a05fcb28f259ea2c8e (diff) |
Fix ayu theme cursor issue (#4764)
Diffstat (limited to 'runtime/themes')
-rw-r--r-- | runtime/themes/ayu_dark.toml | 3 | ||||
-rw-r--r-- | runtime/themes/ayu_light.toml | 3 | ||||
-rw-r--r-- | runtime/themes/ayu_mirage.toml | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/runtime/themes/ayu_dark.toml b/runtime/themes/ayu_dark.toml index 3b989f82..b297a3ab 100644 --- a/runtime/themes/ayu_dark.toml +++ b/runtime/themes/ayu_dark.toml @@ -10,7 +10,6 @@ "string.regexp" = "orange" "string.special" = "yellow" "comment" = { fg = "gray", modifiers = ["italic"] } -"comment.block.documentation" = { fg = "blue", modifiers = ["italic"] } "variable" = "foreground" "label" = "orange" "punctuation" = "foreground" @@ -34,7 +33,7 @@ # Interface "ui.background"= { bg = "background" } -"ui.cursor" = { modifiers = ["reversed"] } +"ui.cursor" = { fg = "dark_gray", bg = "orange" } "ui.cursor.match" = "orange" "ui.linenr" = "dark_gray" "ui.linenr.selected" = "gray" diff --git a/runtime/themes/ayu_light.toml b/runtime/themes/ayu_light.toml index 6a801951..ab0283fb 100644 --- a/runtime/themes/ayu_light.toml +++ b/runtime/themes/ayu_light.toml @@ -10,7 +10,6 @@ "string.regexp" = "orange" "string.special" = "yellow" "comment" = { fg = "gray", modifiers = ["italic"] } -"comment.block.documentation" = { fg = "blue", modifiers = ["italic"] } "variable" = "foreground" "label" = "orange" "punctuation" = "foreground" @@ -34,7 +33,7 @@ # Interface "ui.background"= { bg = "background" } -"ui.cursor" = { modifiers = ["reversed"] } +"ui.cursor" = { fg = "dark_gray", bg = "orange" } "ui.cursor.match" = "orange" "ui.linenr" = "dark_gray" "ui.linenr.selected" = "gray" diff --git a/runtime/themes/ayu_mirage.toml b/runtime/themes/ayu_mirage.toml index b1abd9a3..d6af12fa 100644 --- a/runtime/themes/ayu_mirage.toml +++ b/runtime/themes/ayu_mirage.toml @@ -10,7 +10,6 @@ "string.regexp" = "orange" "string.special" = "yellow" "comment" = { fg = "gray", modifiers = ["italic"] } -"comment.block.documentation" = { fg = "blue", modifiers = ["italic"] } "variable" = "foreground" "label" = "orange" "punctuation" = "foreground" @@ -34,7 +33,7 @@ # Interface "ui.background"= { bg = "background" } -"ui.cursor" = { modifiers = ["reversed"] } +"ui.cursor" = { fg = "dark_gray", bg = "orange" } "ui.cursor.match" = "orange" "ui.linenr" = "dark_gray" "ui.linenr.selected" = "gray" |