From c2226d5a05e08dd46d647a589eafa60c760f6604 Mon Sep 17 00:00:00 2001 From: GreasySlug <9619abgoni@gmail.com> Date: Tue, 4 Apr 2023 10:31:10 +0900 Subject: [PATCH 1/4] Update inlay-hint and wrap --- runtime/themes/base16_transparent.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/runtime/themes/base16_transparent.toml b/runtime/themes/base16_transparent.toml index fd07cb281943..8019c6fa9a93 100644 --- a/runtime/themes/base16_transparent.toml +++ b/runtime/themes/base16_transparent.toml @@ -25,6 +25,10 @@ "ui.virtual.ruler" = { bg = "gray" } "ui.virtual.whitespace" = "gray" "ui.virtual.indent-guide" = "gray" +"ui.virtual.inlay-hint" = { fg = "white", bg = "gray" } +"ui.virtual.inlay-hint.parameter" = { fg = "white", bg = "gray"} +"ui.virtual.inlay-hint.type" = { fg = "white", bg = "gray"} +"ui.virtual.wrap" = "gray" "variable" = "light-red" "constant.numeric" = "yellow" From 5586896af7520f50c47e69f7f430a71c5fb68208 Mon Sep 17 00:00:00 2001 From: GreasySlug <9619abgoni@gmail.com> Date: Tue, 4 Apr 2023 10:45:17 +0900 Subject: [PATCH 2/4] Fix linter error --- runtime/themes/dark_high_contrast.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/themes/dark_high_contrast.toml b/runtime/themes/dark_high_contrast.toml index 897c31e25b20..5f83071efd02 100644 --- a/runtime/themes/dark_high_contrast.toml +++ b/runtime/themes/dark_high_contrast.toml @@ -8,6 +8,7 @@ "ui.text" = "white" "ui.text.focus" = { modifiers = ["reversed"] } # file picker selected +"ui.virtual" = "gray" "ui.virtual.whitespace" = "gray" "ui.virtual.ruler" = { fg = "white", bg = "gray" } "ui.virtual.indent-guide" = "white" From 5b8bee74c0b88696062acfb10cbd15be9f77d264 Mon Sep 17 00:00:00 2001 From: GreasySlug <9619abgoni@gmail.com> Date: Tue, 4 Apr 2023 10:45:47 +0900 Subject: [PATCH 3/4] Update inlay-hint and wrap --- runtime/themes/dark_high_contrast.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/runtime/themes/dark_high_contrast.toml b/runtime/themes/dark_high_contrast.toml index 5f83071efd02..b6290f5aaafe 100644 --- a/runtime/themes/dark_high_contrast.toml +++ b/runtime/themes/dark_high_contrast.toml @@ -12,6 +12,10 @@ "ui.virtual.whitespace" = "gray" "ui.virtual.ruler" = { fg = "white", bg = "gray" } "ui.virtual.indent-guide" = "white" +"ui.virtual.inlay-hint" = { fg = "black", bg = "orange" } +"ui.virtual.inlay-hint.parameter" = { fg = "black", bg = "orange" } +"ui.virtual.inlay-hint.type" = { fg = "black", bg = "orange" } +"ui.virtual.wrap" = "gray" "ui.statusline" = { fg = "white", bg = "deep_blue" } "ui.statusline.inactive" = { fg = "gray", bg = "deep_blue" } From 581db3b07eeb4da868e698ae63c95e075ffc0ecc Mon Sep 17 00:00:00 2001 From: GreasySlug <9619abgoni@gmail.com> Date: Tue, 4 Apr 2023 10:46:13 +0900 Subject: [PATCH 4/4] Chore cursor match --- runtime/themes/dark_high_contrast.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/themes/dark_high_contrast.toml b/runtime/themes/dark_high_contrast.toml index b6290f5aaafe..51701cfce935 100644 --- a/runtime/themes/dark_high_contrast.toml +++ b/runtime/themes/dark_high_contrast.toml @@ -27,7 +27,7 @@ "ui.cursor" = { fg = "black", bg = "white" } "ui.cursor.insert" = { fg = "black", bg = "white" } "ui.cursor.select" = { fg = "black", bg = "white" } -"ui.cursor.match" = { bg = "white", modifiers = ["dim"] } +"ui.cursor.match" = { modifiers = ["reversed"] } "ui.cursor.primary" = { fg = "black", bg = "white", modifiers = ["slow_blink"] } "ui.cursor.secondary" = "white" "ui.cursorline.primary" = { bg = "deep_blue", underline = { color = "orange", style = "double_line" } }