From e25ef391dd126af5965387254e92b3daeda5267a Mon Sep 17 00:00:00 2001 From: pc-2198x Date: Tue, 9 Nov 2021 00:51:06 -0500 Subject: [PATCH] Add Palenight HL and Base16 lua files. --- lua/hl_themes/palenight.lua | 35 +++++++++++++++++++++++++++++++++ lua/themes/palenight-base16.lua | 18 +++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 lua/hl_themes/palenight.lua create mode 100644 lua/themes/palenight-base16.lua diff --git a/lua/hl_themes/palenight.lua b/lua/hl_themes/palenight.lua new file mode 100644 index 0000000..e71ac1c --- /dev/null +++ b/lua/hl_themes/palenight.lua @@ -0,0 +1,35 @@ +local colors = { + white = "#9198B6", -- custom + darker_black = "#232738", + black = "#292D3E", -- nvim bg + black2 = "#2f3344", + one_bg = "#333748", + one_bg2 = "#3c4051", + one_bg3 = "#444859", + grey = "#515566", + grey_fg = "#5b5f70", + grey_fg2 = "#65697a", + light_grey = "#6d7182", + red = "#f07178", + baby_pink = "#606475", + pink = "#ff5370", -- base16 + line = "#383c4d", -- for lines like vertsplit + green = "#c3e88d", --base16 + vibrant_green = "#96e88d", -- custom + nord_blue = "#8fb7ff", + blue = "#82aaff", -- base16 + yellow = "#ffcb6b", -- base16 + sun = "#ffd373", + purple = "#c792ea", -- base16 + dark_purple = "#b383d2", --custom + teal = "#89ffe6", -- custom + orange = "#f78c6c", -- base16 + cyan = "#89ddff", -- base16 + statusline_bg = "#2d3142", + lightbg = "#363a4b", + lightbg2 = "#303445", + pmenu_bg = "#89ffe6", -- custom + folder_bg = "#82aaff" +} + +return colors diff --git a/lua/themes/palenight-base16.lua b/lua/themes/palenight-base16.lua new file mode 100644 index 0000000..b0214ae --- /dev/null +++ b/lua/themes/palenight-base16.lua @@ -0,0 +1,18 @@ +return { + base00 = "292d3e", + base01 = "444267", + base02 = "32374d", + base03 = "676e95", + base04 = "8796b0", + base05 = "959dcb", + base06 = "959dcb", + base07 = "ffffff", + base08 = "f07178", + base09 = "f78c6c", + base0A = "ffcb6b", + base0B = "c3e88d", + base0C = "89ddff", + base0D = "82aaff", + base0E = "c792ea", + base0F = "ff5370" + }