diff --git a/lua/hl_themes/paradise.lua b/lua/hl_themes/paradise.lua new file mode 100644 index 0000000..5dc2457 --- /dev/null +++ b/lua/hl_themes/paradise.lua @@ -0,0 +1,35 @@ +local colors = { + white = "#e8e3e3", + darker_black = "#121212", + black = "#151515", -- nvim bg + black2 = "#181818", + one_bg = "#1f1f1f", + one_bg2 = "#282828", + one_bg3 = "#303030", + grey = "#3d3d3d", + grey_fg = "#474747", + grey_fg2 = "#515151", + light_grey = "#595959", + red = "#b66467", + baby_pink = "#BD7476", + pink = "#BA6C6F", + line = "#2c2f30", -- for lines like vertsplit + green = "#8c977d", + vibrant_green = "#929C84", + nord_blue = "#93A8BD", + blue = "#8da3b9", + yellow = "#d9bc8c", + sun = "#DBBF92", + purple = "#a988b0", + dark_purple = "#A181A7", + teal = "#90AAA7", + orange = "#CEB385", + cyan = "#8aa6a2", + statusline_bg = "#181818", + lightbg = "#1b1b1b", + lightbg2 = "#1f1f1f", + pmenu_bg = "#8aa6a2", + folder_bg = "#8da3b9", +} + +return colors diff --git a/lua/themes/paradise-base16.lua b/lua/themes/paradise-base16.lua new file mode 100644 index 0000000..4ed64cd --- /dev/null +++ b/lua/themes/paradise-base16.lua @@ -0,0 +1,19 @@ +return { + base00 = "151515", + base01 = "1f1f1f", + base02 = "282828", + base03 = "3b3b3b", + base04 = "e8e3e3", + base05 = "e8e3e3", + base06 = "e8e3e3", + base07 = "e8e3e3", + base08 = "b66467", + base09 = "d9bc8c", + base0A = "d9bc8c", + base0B = "8c977d", + base0C = "8aa6a2", + base0D = "8da3b9", + base0E = "a988b0", + base0F = "d9bc8c", +} +