diff --git a/init.lua b/init.lua index ec789ab..cde42ff 100644 --- a/init.lua +++ b/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 diff --git a/lua/themes/nord.lua b/lua/themes/nord.lua new file mode 100644 index 0000000..16f13d2 --- /dev/null +++ b/lua/themes/nord.lua @@ -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