Skip to content

Commit

Permalink
✨ New colorscheme
Browse files Browse the repository at this point in the history
feat: adding new colorscheme, the nekonight-dracula
  • Loading branch information
BrunoCiccarino committed Dec 28, 2024
1 parent 2828b63 commit 420bd99
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
1 change: 1 addition & 0 deletions colors/nekonight-dracula.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require("nekonight").load({ style = "dracula" })
41 changes: 41 additions & 0 deletions lua/nekonight/colors/dracula.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
local ret = vim.deepcopy(require("nekonight.colors.storm"))

---@type Palette
return vim.tbl_deep_extend("force", ret, {
bg = "#282a36",
bg_dark = "#282a36",
bg_dark1 = "#282a36",
blue = "#7aa2f7",
blue0 = "#3d59a1",
blue1 = "#2ac3de",
blue2 = "#0db9d7",
blue5 = "#89ddff",
blue6 = "#b4f9f8",
blue7 = "#394b70",
comment = "#6272a4",
cyan = "#7dcfff",
dark3 = "#545c7e",
dark5 = "#737aa2",
fg = "#c0caf5",
fg_gruvbox ="#f9f5d7",
fg_dark = "#a9b1d6",
fg_gutter = "#3b4261",
green = "#50fa7b",
green1 = "#73daca",
green2 = "#41a6b5",
magenta = "#bb9af7",
magenta2 = "#ff007c",
orange = "#ff9e64",
purple = "#ff79c6",
red = "#f7768e",
red1 = "#db4b4b",
teal = "#1abc9c",
terminal_black = "#414868",
yellow = "#e0af68",
git = {
add = "#449dab",
change = "#6183bb",
delete = "#914c54",
},
})

0 comments on commit 420bd99

Please sign in to comment.