Skip to content

Commit

Permalink
feat: adding new purple colorschemes
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoCiccarino committed Dec 20, 2024
1 parent 1f77e52 commit cbae888
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions colors/nekonight-noctis-uva.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require("nekonight").load({ style = "noctis-uva" })
1 change: 1 addition & 0 deletions colors/nekonight-palenight.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require("nekonight").load({ style = "palenight" })
9 changes: 9 additions & 0 deletions lua/nekonight/colors/noctis-uva.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
local ret = vim.deepcopy(require("nekonight.colors.storm"))

---@type Palette
return vim.tbl_deep_extend("force", ret, {
bg = "#292640",
bg_dark = "#232136",
bg_dark1 = "#232136",
bg_highlight = "#bbb3ff",
})
9 changes: 9 additions & 0 deletions lua/nekonight/colors/palenight.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
local ret = vim.deepcopy(require("nekonight.colors.storm"))

---@type Palette
return vim.tbl_deep_extend("force", ret, {
bg = "#31364a",
bg_dark = "#282C3D",
bg_dark1 = "#282C3D",
bg_highlight = "#7e57c2",
})

0 comments on commit cbae888

Please sign in to comment.