modded nord theme added

This commit is contained in:
siduck76 2021-07-17 14:07:27 +05:30
parent f0b491cd94
commit c6857e2a72
2 changed files with 34 additions and 1 deletions

View File

@ -22,6 +22,6 @@ if require "theme" then
else else
-- otherwise run PackerSync -- otherwise run PackerSync
require "pluginList" 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") vim.cmd("PackerSync")
end end

33
lua/themes/nord.lua Normal file
View File

@ -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