From c6a5288327bb214c61d20b5a7c9977b5c70c7ef6 Mon Sep 17 00:00:00 2001 From: Maksym Pavlenko Date: Mon, 1 Apr 2024 12:56:51 -0700 Subject: [PATCH 1/2] [kanagawa] Change selection color Signed-off-by: Maksym Pavlenko --- runtime/themes/kanagawa.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runtime/themes/kanagawa.toml b/runtime/themes/kanagawa.toml index 99cbed332a9b..118e5909a154 100644 --- a/runtime/themes/kanagawa.toml +++ b/runtime/themes/kanagawa.toml @@ -8,7 +8,7 @@ ## User interface "ui.selection" = { bg = "waveBlue2" } -"ui.selection.primary" = { bg = "waveBlue1" } +"ui.selection.primary" = { bg = "sumiInk6" } "ui.background" = { fg = "fujiWhite", bg = "sumiInk1" } "ui.linenr" = { fg = "sumiInk4" } @@ -123,6 +123,8 @@ sumiInk1 = "#1F1F28" # default background sumiInk2 = "#2A2A37" # lighter background, e.g. colorcolumns, folds sumiInk3 = "#363646" # lighter background, e.g. cursorline sumiInk4 = "#54546D" # darker foreground, e.g. linenumbers, fold column +sumiInk5 = "#363646" # not used +sumiInk6 = "#54546D" # current selection waveBlue1 = "#223249" # popup background, visual selection background waveBlue2 = "#2D4F67" # popup selection background, search background winterGreen = "#2B3328" # diff add background From 65d29af637a39bae0315521d288b223a24a94839 Mon Sep 17 00:00:00 2001 From: Maksym Pavlenko Date: Mon, 1 Apr 2024 13:46:30 -0700 Subject: [PATCH 2/2] [kanagawa] Use less brigh selection color Signed-off-by: Maksym Pavlenko --- runtime/themes/kanagawa.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/runtime/themes/kanagawa.toml b/runtime/themes/kanagawa.toml index 118e5909a154..d6f52a0700f9 100644 --- a/runtime/themes/kanagawa.toml +++ b/runtime/themes/kanagawa.toml @@ -8,7 +8,7 @@ ## User interface "ui.selection" = { bg = "waveBlue2" } -"ui.selection.primary" = { bg = "sumiInk6" } +"ui.selection.primary" = { bg = "sumiInk5" } "ui.background" = { fg = "fujiWhite", bg = "sumiInk1" } "ui.linenr" = { fg = "sumiInk4" } @@ -123,8 +123,7 @@ sumiInk1 = "#1F1F28" # default background sumiInk2 = "#2A2A37" # lighter background, e.g. colorcolumns, folds sumiInk3 = "#363646" # lighter background, e.g. cursorline sumiInk4 = "#54546D" # darker foreground, e.g. linenumbers, fold column -sumiInk5 = "#363646" # not used -sumiInk6 = "#54546D" # current selection +sumiInk5 = "#363646" # current selection waveBlue1 = "#223249" # popup background, visual selection background waveBlue2 = "#2D4F67" # popup selection background, search background winterGreen = "#2B3328" # diff add background