Skip to content

Commit

Permalink
feat(editor): darken NormalFloat bg
Browse files Browse the repository at this point in the history
  • Loading branch information
fafa-a authored and fafa-a committed Dec 1, 2024
1 parent a6ac034 commit 6059075
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lua/anoukis/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ function M.setup()
Normal = { fg = _C.fg, bg = _O.transparent_background and _S.none or _C.bgFloat }, -- normal text
NorlmalNC = { fg = _C.fg, bg = _C.bg }, -- normal text in non-current windows
-- NormalSB = { link = "Normal" }, -- normal text in non-current windows
NormalFloat = { fg = _C.fg, bg = (_O.transparent_background and vim.o.winblend) and _S.none or _C.bgFloat }, -- Normal text in floating windows
FloatBorder = { fg = _P.slate900 }, -- Border of floating windows
NormalFloat = { fg = _C.fg, bg = _P.slate100 }, -- Normal text in floating windows
FloatBorder = { fg = _P.slate900 , bg = _C.bg}, -- Border of floating windows
FloatTitle = { fg = _C.constant, style = _S.bold }, -- Title of floating windows
Pmenu = { fg = _C.p.menu.fg, bg =_C.p.menu.bg, blend = _C.p.menu.blend }, -- Popup menu: normal item.
PmenuSel = { bg = _C.p.menuSel.bg }, -- Popup menu: selected item.
Expand Down
2 changes: 1 addition & 1 deletion lua/anoukis/plugins/neotree.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function M.setup()
NeoTreeIndentMarker = { fg = _COLOR_BACKGROUND == 'light' and _P[variant .. 100] or _P[variant .. 700] },
NeoTreeSymbolicLinkTarget = { fg = _P.purple700 },
NeoTreeTitleBar = { fg = _P.slate100, bg = _P.slate800 },
NeoTreeFloatBorder = {link = "FloatBorder"},
NeoTreeFloatBorder = { link = "FloatBorder" },
NeoTreeFloatTitle = { link = "FloatTitle" },

-- TODO: Add more highlights
Expand Down

0 comments on commit 6059075

Please sign in to comment.