From edbd88fdb7e7c24e8ca87ab7e76c2522324f2bbd Mon Sep 17 00:00:00 2001 From: gokul <33443763+JavaCafe01@users.noreply.github.com> Date: Sat, 24 Jul 2021 16:43:38 -0700 Subject: [PATCH] Added javacafe color scheme The javacafe color scheme is my custom smash of nord and pastel colors. --- lua/themes/javacafe.lua | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 lua/themes/javacafe.lua diff --git a/lua/themes/javacafe.lua b/lua/themes/javacafe.lua new file mode 100644 index 0000000..89e4364 --- /dev/null +++ b/lua/themes/javacafe.lua @@ -0,0 +1,33 @@ +local colors = { + white = "#F0F4FC", + darker_black = "#10171f", + black = "#131a21", -- nvim bg + black2 = "#29343d", + one_bg = "#2c333f", + one_bg2 = "#373e4c", + one_bg3 = "#434c5e", + grey = "#4c566a", + grey_fg = "#565c68", + grey_fg2 = "#606672", + light_grey = "#646a76", + red = "#f9929b", + baby_pink = "#fca2aa", + pink = "#fca2af", + line = "#3b4b58", -- for lines like vertsplit + green = "#7ed491", + vibrant_green = "#a5d4af", + blue = "#bac8ef", + nord_blue = "#a3b8ef", + yellow = "#fbdf90", + sun = "#fbdf9a", + purple = "#d7c1ed", + dark_purple = "#ccaced", + teal = "#9ce5c0", + orange = "#e39a83", + cyan = "#c7e5d6", + statusline_bg = "#29343d", + lightbg = "#373e4c", + lightbg2 = "#2c333f" +} + +return colors