modded nord theme added
This commit is contained in:
parent
f0b491cd94
commit
c6857e2a72
2
init.lua
2
init.lua
|
@ -22,6 +22,6 @@ if require "theme" then
|
|||
else
|
||||
-- otherwise run PackerSync
|
||||
require "pluginList"
|
||||
print("Now PackerSync will be executed, after completion, restart neovim.\n")
|
||||
print("Now PackerSync will be executed, after completion, restart nvim.\n")
|
||||
vim.cmd("PackerSync")
|
||||
end
|
||||
|
|
|
@ -0,0 +1,33 @@
|
|||
local colors = {
|
||||
white = "#abb2bf",
|
||||
darker_black = "#2a303c",
|
||||
black = "#2E3440", -- nvim bg
|
||||
black2 = "#343a46",
|
||||
one_bg = "#353b47", -- real bg of onedark
|
||||
one_bg2 = "#383e4a",
|
||||
one_bg3 = "#3b414d",
|
||||
grey = "#474d59",
|
||||
grey_fg = "#565c68",
|
||||
grey_fg2 = "#606672",
|
||||
light_grey = "#646a76",
|
||||
red = "#BF616A",
|
||||
baby_pink = "#de878f",
|
||||
pink = "#e89199",
|
||||
line = "#3a404c", -- for lines like vertsplit
|
||||
green = "#A3BE8C",
|
||||
vibrant_green = "#afca98",
|
||||
blue = "#7797b7",
|
||||
nord_blue = "#81A1C1",
|
||||
yellow = "#EBCB8B",
|
||||
sun = "#e1c181",
|
||||
purple = "#aab1be",
|
||||
dark_purple = "##B48EAD",
|
||||
teal = "#6484a4",
|
||||
orange = "#e39a83",
|
||||
cyan = "#9aafe6",
|
||||
statusline_bg = "#313743",
|
||||
lightbg = "#333945",
|
||||
lightbg2 = "#353b47"
|
||||
}
|
||||
|
||||
return colors
|
Loading…
Reference in New Issue