Skip to content

Commit

Permalink
fix: transparent background
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Cancelinha committed Aug 16, 2024
1 parent 9aef546 commit 897d666
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions lua/nordern/base.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ B.gui = {
Directory = { fg = C.fg, bg = C.none }, -- Directory names (and other special names in listings) fg = C.none, bg = C.blend.bluec1 .
EndOfBuffer = { fg = C.night.c1, bg = C.none }, -- Filler lines (~) after the end of the buffer. By default, this is highlighted like hl-NonText.
ErrorMsg = { fg = C.aurora.red, bg = C.bg }, -- Error messages on the command line.
FloatBorder = { fg = C.frost.turquoise, bg = C.bg }, -- Border of floating windows.
FloatFooter = { fg = C.frost.turquoise, bg = C.bg }, -- Footer of floating windows.base
FloatBorder = { fg = C.frost.turquoise, bg = C.bg }, -- Border of floating windows.
FloatFooter = { fg = C.frost.turquoise, bg = C.bg }, -- Footer of floating windows.base
FloatTitle = { fg = C.fg, bg = C.none }, -- Title of floating windows.
FoldColumn = { fg = C.none, bg = C.none }, -- 'foldcolumn'
Folded = { fg = C.none, bg = C.none }, -- Line used for closed folds.
Expand All @@ -65,7 +65,7 @@ B.gui = {
NormalFloat = { fg = C.fg, bg = C.bg }, -- Normal text in floating windows.
NormalNC = { fg = C.fg, bg = C.bg }, -- Normal text in non-current windows.
-- Pmenu
Pmenu = { fg = C.fg, bg = C.bg }, -- Popup menu: Normal item.
Pmenu = { fg = C.fg, bg = C.bg }, -- Popup menu: Normal item.
PmenuExtra = { fg = C.frost.light_blue, bg = C.bg }, -- Popup menu: Normal item "extra text".
PmenuExtraSel = { fg = C.night.c1, bg = C.blend.blue }, -- Popup menu: Selected item "extra text".
PmenuKind = { fg = C.frost.turquoise, bg = C.none }, -- Popup menu: Normal item "kind".
Expand Down Expand Up @@ -104,15 +104,15 @@ B.gui = {
DiffAdd = { fg = C.aurora.green, bg = C.blend.green }, -- Diff mode: Added line. diff.txt
DiffChange = { fg = C.aurora.yellow, bg = C.blend.yellow }, -- Diff mode: Changed line. diff.txt
DiffDelete = { fg = C.aurora.red, bg = C.blend.red }, -- Diff mode: Deleted line. diff.txt
DiffText = { fg = C.fg, bg = C.bg }, -- Diff mode: Changed text within a changed line. diff.txt
DiffText = { fg = C.fg, bg = C.bg }, -- Diff mode: Changed text within a changed line. diff.txt
--Health
healthError = { fg = C.aurora.red, bg = C.blend.red },
healthSuccess = { fg = C.aurora.green, bg = C.blend.green },
healthWarning = { fg = C.aurora.yellow, bg = C.blend.yellow },
-- Gui
Menu = { fg = C.frost.turquoise, bg = C.bg }, -- Current font, background and foreground colors of the menus. Also used for the toolbar. Applicable highlight arguments: font, guibg, guifg. hl-Scrollbar
Scrollbar = { link = "PmenuSbar" }, -- Current background and foreground of the main window's scrollbars. Applicable highlight arguments: guibg, guifg. hl-Tooltip
Tooltip = { fg = C.blend.turquoise, bg = C.bg }, -- Current font, background and foreground of the tooltips. Applicable highlight arguments: font, guibg, guifg.
Tooltip = { fg = C.blend.turquoise, bg = C.bg }, -- Current font, background and foreground of the tooltips. Applicable highlight arguments: font, guibg, guifg.
Yank = { fg = C.aurora.yellow, bg = C.blend.turquoise } -- Yanking highlight
}

Expand Down
2 changes: 1 addition & 1 deletion lua/nordern/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ local c = require("nordern.config")

function nordern.load(opts)
u.preload()
c.apply_opts(b, opts)
c.config(b, opts)
u.load(b, l, p)
end

Expand Down

0 comments on commit 897d666

Please sign in to comment.