summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-25 20:41:00 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-25 20:41:00 +0100
commit651732adb8d165a81514a8632a493d221c53c308 (patch)
treec4bd46af1fda36230aa1513a865e51e3b113d01a /lua
parent8392ec7dffa4633288072c55bbe9202ab63e7547 (diff)
fix: update search from hint_blue to hint_green
Diffstat (limited to 'lua')
-rw-r--r--lua/no-clown-fiesta/highlights.lua4
-rw-r--r--lua/no-clown-fiesta/palette.lua1
2 files changed, 3 insertions, 2 deletions
diff --git a/lua/no-clown-fiesta/highlights.lua b/lua/no-clown-fiesta/highlights.lua
index 579e52c..98c766b 100644
--- a/lua/no-clown-fiesta/highlights.lua
+++ b/lua/no-clown-fiesta/highlights.lua
@@ -47,8 +47,8 @@ local highlights = {
SpecialKey = { fg = C.blue },
Title = { fg = C.blue },
ErrorMsg = { fg = C.error_red, bg = C.bg, style = "bold" },
- Search = { fg = C.hint_blue, bg = C.alt_bg },
- IncSearch = { fg = C.hint_blue, bg = C.alt_bg },
+ Search = { fg = C.hint_green, bg = C.alt_bg },
+ IncSearch = { fg = C.hint_green, bg = C.alt_bg },
Substitute = { fg = C.alt_bg, bg = C.gray_blue },
MoreMsg = { fg = C.cyan },
Question = { fg = C.cyan },
diff --git a/lua/no-clown-fiesta/palette.lua b/lua/no-clown-fiesta/palette.lua
index 93e3a6d..6410956 100644
--- a/lua/no-clown-fiesta/palette.lua
+++ b/lua/no-clown-fiesta/palette.lua
@@ -27,6 +27,7 @@ local colors = {
warning_orange = "#F4BF75",
info_yellow = "#F4BF75",
hint_blue = "#A5D6FF",
+ hint_green = "#90A959",
purple_test = "#ff00ff",
cyan_test = "#00ffff",
}