Skip to content

Commit

Permalink
fix: fixxing cursor colorscheme
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoCiccarino committed Dec 20, 2024
1 parent b0fb8fb commit b1cfe9b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lua/nekonight/colors/noctis-uva.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ return vim.tbl_deep_extend("force", ret, {
bg = "#292640",
bg_dark = "#232136",
bg_dark1 = "#232136",
bg_highlight = "#bbb3ff",
bg_highlight = nil,
})
2 changes: 1 addition & 1 deletion lua/nekonight/colors/nord.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ return vim.tbl_deep_extend("force", ret, {
bg = "#2E3440",
bg_dark = "#2e3440",
bg_dark1 = "#3b4252",
bg_highlight = "#7AA1BE",
bg_highlight = nil,
})
2 changes: 1 addition & 1 deletion lua/nekonight/colors/palenight.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ return vim.tbl_deep_extend("force", ret, {
bg = "#31364a",
bg_dark = "#282C3D",
bg_dark1 = "#282C3D",
bg_highlight = "#7e57c2",
bg_highlight = nil,
})
2 changes: 1 addition & 1 deletion lua/nekonight/colors/shades-of-purple-dark.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ return vim.tbl_deep_extend("force", ret, {
bg = "#1E1E3F",
bg_dark = "#2D2B55",
bg_dark1 = "#2D2B55",
bg_highlight = "#4D21FC",
bg_highlight = nil,
})
2 changes: 1 addition & 1 deletion lua/nekonight/colors/shades-of-purple.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ return vim.tbl_deep_extend("force", ret, {
bg = "#2D2B55",
bg_dark = "#1E1E3F",
bg_dark1 = "#1E1E3F",
bg_highlight = "#4D21FC",
bg_highlight = nil,
})

0 comments on commit b1cfe9b

Please sign in to comment.