Skip to content

Commit

Permalink
πŸ’„ Changing night colorscheme
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoCiccarino committed Dec 30, 2024
1 parent df7bd67 commit 3d6b6b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion colors/nekonight.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
require("nekonight").load({
style = vim.o.background == "light" and "day" or nil,
style = vim.o.background == "light" and "day" or vim.o.background == "dark" and "night",
})
8 changes: 5 additions & 3 deletions lua/nekonight/colors/night.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ local ret = vim.deepcopy(require("nekonight.colors.storm"))

---@type Palette
return vim.tbl_deep_extend("force", ret, {
bg = "#1a1b26",
bg_dark = "#16161e",
bg_dark1 = "#0C0E14",
bg = "#2a2139",
bg_dark = "#1b1524",
bg_dark1 = "#1b1524",
bg_highlight = "#515c6a",
green = "#50fa7b",
})

0 comments on commit 3d6b6b2

Please sign in to comment.