From 5b656cdf2f9bd8d1f25dff0fcfa9d31cbe2f2d40 Mon Sep 17 00:00:00 2001 From: Florent Nuttens Date: Sat, 23 Mar 2024 23:06:37 +0100 Subject: [PATCH 1/3] feat: add jump label color to catppuccin themes --- runtime/themes/catppuccin_mocha.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/themes/catppuccin_mocha.toml b/runtime/themes/catppuccin_mocha.toml index 65ba76e4bfba..d1e08356407c 100644 --- a/runtime/themes/catppuccin_mocha.toml +++ b/runtime/themes/catppuccin_mocha.toml @@ -89,6 +89,7 @@ "ui.virtual.ruler" = { bg = "surface0" } "ui.virtual.indent-guide" = "surface0" "ui.virtual.inlay-hint" = { fg = "overlay0", bg = "base" } +"ui.virtual.jump-label" = { fg = "red", modifiers = ["bold"] } "ui.selection" = { bg = "surface1" } From ea2eddf659c20f58889aef67b3287ea366b3d0d6 Mon Sep 17 00:00:00 2001 From: Florent Nuttens Date: Sat, 23 Mar 2024 23:27:31 +0100 Subject: [PATCH 2/3] feat: add jump label color to dark plus theme --- runtime/themes/dark_plus.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/themes/dark_plus.toml b/runtime/themes/dark_plus.toml index 819cd62aa144..11be7fd6a28f 100644 --- a/runtime/themes/dark_plus.toml +++ b/runtime/themes/dark_plus.toml @@ -90,6 +90,7 @@ "ui.virtual.ruler" = { bg = "borders" } "ui.virtual.indent-guide" = { fg = "dark_gray4" } "ui.virtual.inlay-hint" = { fg = "dark_gray5"} +"ui.virtual.jump-label" = { fg = "dark_gray", modifiers = ["bold"] } "warning" = { fg = "gold2" } "error" = { fg = "red" } From beb7170ffddc5f1deb9314a3244bdf3a44e5ff3e Mon Sep 17 00:00:00 2001 From: Florent Nuttens Date: Sat, 23 Mar 2024 23:28:14 +0100 Subject: [PATCH 3/3] feat: add jump label color to onedark theme --- runtime/themes/onedark.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/themes/onedark.toml b/runtime/themes/onedark.toml index eae11172e809..5b049aff9425 100644 --- a/runtime/themes/onedark.toml +++ b/runtime/themes/onedark.toml @@ -56,6 +56,7 @@ "ui.virtual.whitespace" = { fg = "light-gray" } "ui.virtual.ruler" = { bg = "gray" } "ui.virtual.inlay-hint" = { fg = "light-gray" } +"ui.virtual.jump-label" = { fg = "light-gray", modifiers = ["bold"] } "ui.cursor" = { fg = "white", modifiers = ["reversed"] } "ui.cursor.primary" = { fg = "white", modifiers = ["reversed"] }