From c84571d806ac7eb8445b502b40694f4fb689eb52 Mon Sep 17 00:00:00 2001 From: Max Miliano Date: Sat, 24 Aug 2024 00:11:48 -0300 Subject: [PATCH] fix: selenized base02 and base04 --- CONTRIBUTING.md | 6 +++--- lua/lualine/themes/solarized.lua | 2 -- lua/solarized/highlights/init.lua | 2 +- lua/solarized/palette/init.lua | 4 ++-- lua/solarized/palette/solarized-light.lua | 3 ++- 5 files changed, 8 insertions(+), 9 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f9869d5..dae3a36 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -67,7 +67,7 @@ colorscheme. | Name | Hex | Description | | ------- | ------- | ------------------------------------------ | | base03 | #103c48 | background | -| base02 | #2d5b69 | background highlight | +| base02 | #184956 | background highlight | | base01 | #72898f | comments / secondary comment | | base00 | #53676d | none | | base0 | #adbcbc | body text / default code / primary content | @@ -87,7 +87,7 @@ colorscheme. | Name | Hex (balance 70) | Description | | ----------- | ---------------- | --------------------------------- | -| base04 | #184956 | sidebar background / float window | +| base04 | #0b2a32 | sidebar background / float window | | mix_yellow | #4c5f3f | yellow + base03 / optional | | mix_orange | #525248 | orange + base03 / optional | | mix_red | #56444a | red + base03 / optional | @@ -141,7 +141,7 @@ colorscheme. | Name | Hex | Description | | ------- | ------- | ------------------------------------------ | | base03 | #103c48 | none | -| base02 | #2d5b69 | none | +| base02 | #184956 | none | | base01 | #3a4d53 | optional emphasized content | | base00 | #53676d | body text / default code / primary content | | base0 | #adbcbc | none | diff --git a/lua/lualine/themes/solarized.lua b/lua/lualine/themes/solarized.lua index 8102a55..7996fa8 100644 --- a/lua/lualine/themes/solarized.lua +++ b/lua/lualine/themes/solarized.lua @@ -45,5 +45,3 @@ else }, } end - -return theme diff --git a/lua/solarized/highlights/init.lua b/lua/solarized/highlights/init.lua index c7188ab..2869ebf 100644 --- a/lua/solarized/highlights/init.lua +++ b/lua/solarized/highlights/init.lua @@ -769,7 +769,7 @@ M.set_highlight = function(colors, config) nvim_set_hl('TelescopePromptBorder', { link = 'TelescopeBorder' }) nvim_set_hl('TelescopeResultsBorder', { link = 'TelescopeBorder' }) nvim_set_hl('TelescopePreviewBorder', { link = 'TelescopeBorder' }) - nvim_set_hl('TelescopeTitle', { link = 'Title' }) + nvim_set_hl('TelescopeTitle', { fg = colors.blue, bg = colors.mix_blue }) nvim_set_hl('TelescopePromptTitle', { link = 'TelescopeTitle' }) nvim_set_hl('TelescopeResultsTitle', { link = 'TelescopeTitle' }) nvim_set_hl('TelescopePreviewTitle', { link = 'TelescopeTitle' }) diff --git a/lua/solarized/palette/init.lua b/lua/solarized/palette/init.lua index 5ec09a7..a205565 100644 --- a/lua/solarized/palette/init.lua +++ b/lua/solarized/palette/init.lua @@ -74,8 +74,9 @@ M.solarized = { ---@type solarized.palette M.selenized = { + base04 = '#0b2a32', base03 = '#103c48', - base02 = '#2d5b69', + base02 = '#184956', base01 = '#72898f', base00 = '#53676d', base0 = '#adbcbc', @@ -90,7 +91,6 @@ M.selenized = { blue = '#4695f7', cyan = '#41c7b9', green = '#75b938', - base04 = '#184956', mix_yellow = '#4c5f3f', mix_orange = '#525248', mix_red = '#56444a', diff --git a/lua/solarized/palette/solarized-light.lua b/lua/solarized/palette/solarized-light.lua index 58413ce..8301ee5 100644 --- a/lua/solarized/palette/solarized-light.lua +++ b/lua/solarized/palette/solarized-light.lua @@ -38,8 +38,9 @@ M.solarized = { ---@type solarized.palette M.selenized = { + base04 = '#0b2a32', base03 = '#103c48', - base02 = '#2d5b69', + base02 = '#184956', base01 = '#3a4d53', base00 = '#53676d', base0 = '#53676d',