From 664d08e70d02a3e3917ddc69e66b5fc826a0caf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20S=C3=A1?= Date: Tue, 29 Nov 2022 23:30:06 +0000 Subject: [PATCH] Fix ayu theme cursor issue (#4764) --- runtime/themes/ayu_dark.toml | 3 +-- runtime/themes/ayu_light.toml | 3 +-- 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"