From da08af81db425460cc0e1fe5f71a40f20e37a487 Mon Sep 17 00:00:00 2001 From: Pawel Grzybek Date: Sun, 31 Mar 2024 20:35:13 +0100 Subject: [PATCH 1/3] add jump-label styling for base16_transparent theme --- runtime/themes/base16_transparent.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/themes/base16_transparent.toml b/runtime/themes/base16_transparent.toml index c314ae8c516e..1839a21253c2 100644 --- a/runtime/themes/base16_transparent.toml +++ b/runtime/themes/base16_transparent.toml @@ -31,6 +31,7 @@ "ui.virtual.inlay-hint.parameter" = { fg = "white", bg = "gray"} "ui.virtual.inlay-hint.type" = { fg = "white", bg = "gray"} "ui.virtual.wrap" = "gray" +"ui.virtual.jump-label" = { modifiers = ["underlined"] } "variable" = "light-red" "constant.numeric" = "yellow" From 563ade22bdb9053cac29a250b0005717b6adbf23 Mon Sep 17 00:00:00 2001 From: Pawel Grzybek Date: Mon, 1 Apr 2024 14:44:56 +0100 Subject: [PATCH 2/3] keep the change consistent with other themes from base16 family --- base16_theme.toml | 1 + runtime/themes/base16_default_dark.toml | 1 + runtime/themes/base16_default_light.toml | 1 + runtime/themes/base16_terminal.toml | 1 + 4 files changed, 4 insertions(+) diff --git a/base16_theme.toml b/base16_theme.toml index 268a38df61bd..2d5a79727274 100644 --- a/base16_theme.toml +++ b/base16_theme.toml @@ -28,6 +28,7 @@ "label" = "magenta" "namespace" = "magenta" "ui.help" = { fg = "white", bg = "black" } +"ui.virtual.jump-label" = { modifiers = ["underlined"] } "markup.heading" = "blue" "markup.list" = "red" diff --git a/runtime/themes/base16_default_dark.toml b/runtime/themes/base16_default_dark.toml index 1a38a6aebcfe..0c8d3dcb14d1 100644 --- a/runtime/themes/base16_default_dark.toml +++ b/runtime/themes/base16_default_dark.toml @@ -2,6 +2,7 @@ "ui.background" = { bg = "base00" } "ui.virtual.whitespace" = "base03" +"ui.virtual.jump-label" = { modifiers = ["underlined"] } "ui.menu" = { fg = "base05", bg = "base01" } "ui.menu.selected" = { fg = "base01", bg = "base04" } "ui.linenr" = { fg = "base03", bg = "base01" } diff --git a/runtime/themes/base16_default_light.toml b/runtime/themes/base16_default_light.toml index 84dab530564a..4c4a4e584ffe 100644 --- a/runtime/themes/base16_default_light.toml +++ b/runtime/themes/base16_default_light.toml @@ -13,6 +13,7 @@ "ui.cursor" = { fg = "base04", modifiers = ["reversed"] } "ui.cursor.primary" = { fg = "base05", modifiers = ["reversed"] } "ui.virtual.whitespace" = "base03" +"ui.virtual.jump-label" = { modifiers = ["underlined"] } "ui.text" = "base05" "operator" = "base05" "ui.text.focus" = "base05" diff --git a/runtime/themes/base16_terminal.toml b/runtime/themes/base16_terminal.toml index f397586118d5..6808d6b7faa0 100644 --- a/runtime/themes/base16_terminal.toml +++ b/runtime/themes/base16_terminal.toml @@ -14,6 +14,7 @@ "ui.cursor" = { fg = "light-gray", modifiers = ["reversed"] } "ui.cursor.primary" = { fg = "light-gray", modifiers = ["reversed"] } "ui.virtual.whitespace" = "light-gray" +"ui.virtual.jump-label" = { modifiers = ["underlined"] } "variable" = "light-red" "constant.numeric" = "yellow" "constant" = "yellow" From a2fbf5bd7c84c326c0a6c2128653e8483e1b8778 Mon Sep 17 00:00:00 2001 From: Pawel Grzybek Date: Mon, 1 Apr 2024 17:21:42 +0100 Subject: [PATCH 3/3] update jump-labels color to blue and make them bold --- base16_theme.toml | 2 +- runtime/themes/base16_default_dark.toml | 2 +- runtime/themes/base16_default_light.toml | 2 +- runtime/themes/base16_terminal.toml | 2 +- runtime/themes/base16_transparent.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/base16_theme.toml b/base16_theme.toml index 2d5a79727274..49f09afed5cb 100644 --- a/base16_theme.toml +++ b/base16_theme.toml @@ -28,7 +28,7 @@ "label" = "magenta" "namespace" = "magenta" "ui.help" = { fg = "white", bg = "black" } -"ui.virtual.jump-label" = { modifiers = ["underlined"] } +"ui.virtual.jump-label" = { fg = "blue", modifiers = ["bold", "underlined"] } "markup.heading" = "blue" "markup.list" = "red" diff --git a/runtime/themes/base16_default_dark.toml b/runtime/themes/base16_default_dark.toml index 0c8d3dcb14d1..0e5f066ba9a4 100644 --- a/runtime/themes/base16_default_dark.toml +++ b/runtime/themes/base16_default_dark.toml @@ -2,7 +2,7 @@ "ui.background" = { bg = "base00" } "ui.virtual.whitespace" = "base03" -"ui.virtual.jump-label" = { modifiers = ["underlined"] } +"ui.virtual.jump-label" = { fg = "blue", modifiers = ["bold", "underlined"] } "ui.menu" = { fg = "base05", bg = "base01" } "ui.menu.selected" = { fg = "base01", bg = "base04" } "ui.linenr" = { fg = "base03", bg = "base01" } diff --git a/runtime/themes/base16_default_light.toml b/runtime/themes/base16_default_light.toml index 4c4a4e584ffe..e89a9d1be41e 100644 --- a/runtime/themes/base16_default_light.toml +++ b/runtime/themes/base16_default_light.toml @@ -13,7 +13,7 @@ "ui.cursor" = { fg = "base04", modifiers = ["reversed"] } "ui.cursor.primary" = { fg = "base05", modifiers = ["reversed"] } "ui.virtual.whitespace" = "base03" -"ui.virtual.jump-label" = { modifiers = ["underlined"] } +"ui.virtual.jump-label" = { fg = "blue", modifiers = ["bold", "underlined"] } "ui.text" = "base05" "operator" = "base05" "ui.text.focus" = "base05" diff --git a/runtime/themes/base16_terminal.toml b/runtime/themes/base16_terminal.toml index 6808d6b7faa0..6864c0eb4269 100644 --- a/runtime/themes/base16_terminal.toml +++ b/runtime/themes/base16_terminal.toml @@ -14,7 +14,7 @@ "ui.cursor" = { fg = "light-gray", modifiers = ["reversed"] } "ui.cursor.primary" = { fg = "light-gray", modifiers = ["reversed"] } "ui.virtual.whitespace" = "light-gray" -"ui.virtual.jump-label" = { modifiers = ["underlined"] } +"ui.virtual.jump-label" = { fg = "blue", modifiers = ["bold", "underlined"] } "variable" = "light-red" "constant.numeric" = "yellow" "constant" = "yellow" diff --git a/runtime/themes/base16_transparent.toml b/runtime/themes/base16_transparent.toml index 1839a21253c2..70452366f4c8 100644 --- a/runtime/themes/base16_transparent.toml +++ b/runtime/themes/base16_transparent.toml @@ -31,7 +31,7 @@ "ui.virtual.inlay-hint.parameter" = { fg = "white", bg = "gray"} "ui.virtual.inlay-hint.type" = { fg = "white", bg = "gray"} "ui.virtual.wrap" = "gray" -"ui.virtual.jump-label" = { modifiers = ["underlined"] } +"ui.virtual.jump-label" = { fg = "blue", modifiers = ["bold", "underlined"] } "variable" = "light-red" "constant.numeric" = "yellow"