Skip to content

Commit

Permalink
feat: adding gruvbox version for nekonight
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoCiccarino committed Dec 21, 2024
1 parent b1cfe9b commit 274161d
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
42 changes: 42 additions & 0 deletions lua/nekonight/colors/gruvbox.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
local ret = vim.deepcopy(require("nekonight.colors.storm"))

---@type Palette
return vim.tbl_deep_extend("force", ret, {
bg = "#3c3836",
bg_dark = "#3c3836",
bg_dark1 = "#3c3836",
bg_highlight = "#32302f",
blue = "#82aaff",
blue0 = "#3e68d7",
blue1 = "#65bcff",
blue2 = "#0db9d7",
blue5 = "#8ec07c",
blue6 = "#b4f9f8",
blue7 = "#394b70",
comment = "#636da6",
cyan = "#86e1fc",
dark3 = "#545c7e",
dark5 = "#737aa2",
fg = "#c8d3f5",
fg_dark = "#828bb8",
fg_gutter = "#3b4261",
green = "#c3e88d",
green1 = "#4fd6be",
green2 = "#41a6b5",
magenta = "#c099ff",
magenta2 = "#ff007c",
orange = "#ff966c",
purple = "#cc241d",
red = "#ff757f",
red1 = "#c53b53",
teal = "#4fd6be",
terminal_black = "#3c3836",
yellow = "#ffc777",
git = {
add = "#b8db87",
change = "#7ca1f2",
delete = "#e26a75",
},

})

1 change: 1 addition & 0 deletions lua/nekonight/colors/storm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ local ret = {
dark3 = "#545c7e",
dark5 = "#737aa2",
fg = "#c0caf5",
fg_gruvbox ="#f9f5d7",
fg_dark = "#a9b1d6",
fg_gutter = "#3b4261",
green = "#9ece6a",
Expand Down

0 comments on commit 274161d

Please sign in to comment.