better colors for javacafe theme

This commit is contained in:
siduck76 2021-07-25 14:53:43 +05:30
parent 33422b0f3a
commit 11d75cf597
2 changed files with 10 additions and 11 deletions

View File

@ -115,6 +115,5 @@ bg("NormalFloat", black2)
bg("FloatBorder", black2) bg("FloatBorder", black2)
fg("FloatBorder", black2) fg("FloatBorder", black2)
-- set bg color for nvim ( so nvim wont use terminal bg) -- set bg color for nvim
-- bg("Normal", black)
bg("Normal", black)

View File

@ -1,9 +1,9 @@
local colors = { local colors = {
white = "#b5bcc9", white = "#b5bcc9",
darker_black = "#121920", darker_black = "#10171e",
black = "#181f26", -- nvim bg black = "#131a21", -- nvim bg
black2 = "#1f262d", black2 = "#1a2128",
one_bg = "#222930", one_bg = "#1e252c",
one_bg2 = "#272e35", one_bg2 = "#272e35",
one_bg3 = "#2a3138", one_bg3 = "#2a3138",
grey = "#363d44", grey = "#363d44",
@ -13,7 +13,7 @@ local colors = {
red = "#ef8891", red = "#ef8891",
baby_pink = "#fca2aa", baby_pink = "#fca2aa",
pink = "#fca2af", pink = "#fca2af",
line = "#272e35", -- for lines like vertsplit line = "#20272e", -- for lines like vertsplit
green = "#9ce5c0", green = "#9ce5c0",
vibrant_green = "#a5d4af", vibrant_green = "#a5d4af",
blue = "#99aee5", blue = "#99aee5",
@ -25,9 +25,9 @@ local colors = {
teal = "#92dbb6", teal = "#92dbb6",
orange = "#EDA685", orange = "#EDA685",
cyan = "#b5c3ea", cyan = "#b5c3ea",
statusline_bg = "#1d242b", statusline_bg = "#181f26",
lightbg = "#2c333f", lightbg = "#222930",
lightbg2 = "#21282f" lightbg2 = "#1d242b"
} }
return colors return colors