diff options
| author | Christian Chiarulli <[email protected]> | 2022-09-21 21:12:15 -0400 | 
|---|---|---|
| committer | Christian Chiarulli <[email protected]> | 2022-09-21 21:12:15 -0400 | 
| commit | 2ecdc8ecbff0f8b15eca46d7f51ba1eab873a8a8 (patch) | |
| tree | 887acc7368af21c5abbd9143dbae6169af19aaae /lua/lvim/core/theme.lua | |
| parent | 59043c6629fa742dab5550ef31cef7a944887544 (diff) | |
fix: improve lualine inactive
Diffstat (limited to 'lua/lvim/core/theme.lua')
| -rw-r--r-- | lua/lvim/core/theme.lua | 28 | 
1 files changed, 28 insertions, 0 deletions
| diff --git a/lua/lvim/core/theme.lua b/lua/lvim/core/theme.lua index 886045c9..b1fce081 100644 --- a/lua/lvim/core/theme.lua +++ b/lua/lvim/core/theme.lua @@ -8,6 +8,34 @@ M.config = function()          hl.IndentBlanklineContextChar = {            fg = c.dark5,          } +        local prompt = "#2d3149" +        -- hl.TelescopeNormal = { +        --   bg = c.bg_dark, +        --   fg = c.fg_dark, +        -- } +        -- hl.TelescopeBorder = { +        --   bg = c.bg_dark, +        --   fg = c.bg_dark, +        -- } +        -- hl.TelescopePromptNormal = { +        --   bg = prompt, +        -- } +        -- hl.TelescopePromptBorder = { +        --   bg = prompt, +        --   fg = prompt, +        -- } +        -- hl.TelescopePromptTitle = { +        --   bg = prompt, +        --   fg = prompt, +        -- } +        -- hl.TelescopePreviewTitle = { +        --   bg = c.bg_dark, +        --   fg = c.bg_dark, +        -- } +        -- hl.TelescopeResultsTitle = { +        --   bg = c.bg_dark, +        --   fg = c.bg_dark, +        -- }        end,        style = "night", -- The theme comes in three styles, `storm`, a darker variant `night` and `day`        transparent = lvim.transparent_window, -- Enable this to disable setting the background color | 
