From ddb11c6bc1819e28f5becb297533710d0fd83bce Mon Sep 17 00:00:00 2001 From: boppyt <71049646+boppyt@users.noreply.github.com> Date: Tue, 7 Sep 2021 08:14:52 -0700 Subject: [PATCH] add lfgruv theme --- lua/colors/themes/lfgruv.lua | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 lua/colors/themes/lfgruv.lua diff --git a/lua/colors/themes/lfgruv.lua b/lua/colors/themes/lfgruv.lua new file mode 100644 index 00000000..c5bed9f3 --- /dev/null +++ b/lua/colors/themes/lfgruv.lua @@ -0,0 +1,35 @@ +local colors = { + white = "#ebdbb2", + darker_black = "#232323", + black = "#282828", -- nvim bg + black2 = "#2e2e2e", + one_bg = "#353535", + one_bg2 = "#3f3f3f", + one_bg3 = "#444444", + grey = "#464646", + grey_fg = "#4e4e4e", + grey_fg2 = "#505050", + light_grey = "#565656", + red = "#b66467", + baby_pink = "#fbe6ea", + pink = "#e193ab", + line = "#2c2f30", -- for lines like vertsplit + green = "#8d987e", + vibrant_green = "#9cab51", + nord_blue = "#87a197", + blue = "#4d7d80", + yellow = "#dcbb8c", + sun = "#f1bf77", + purple = "#958793", + dark_purple = "#d3869b", + teal = "#6ec2bf", + orange = "#e78a4e", + cyan = "#8aa6a5", + statusline_bg = "#2c2c2c", + lightbg = "#353535", + lightbg2 = "#303030", + pmenu_bg = "#8aa6a5", + folder_bg = "#8aa6a5", +} + +return colors