neovim-config/lua/colors/themes/jellybeans.lua

36 lines
814 B
Lua
Raw Normal View History

2021-09-07 22:55:22 +00:00
local colors = {
white = "#e8e8d3",
2021-09-08 12:26:54 +00:00
darker_black = "#101010",
2021-09-07 22:55:22 +00:00
black = "#151515", -- nvim bg
black2 = "#1c1c1c",
2021-09-08 12:26:54 +00:00
one_bg = "#252525",
one_bg2 = "#2e2e2e",
one_bg3 = "#3a3a3a",
grey = "#424242",
grey_fg = "#474747",
grey_fg2 = "#4c4c4c",
light_grey = "#525252",
2021-09-07 22:55:22 +00:00
red = "#cf6a4c",
baby_pink = "#f6c6d9",
pink = "#f0a0c0",
2021-09-08 12:26:54 +00:00
line = "#232323", -- for lines like vertsplit
2021-09-07 22:55:22 +00:00
green = "#99ad6a",
vibrant_green = "#c2cea6",
2021-09-08 12:26:54 +00:00
nord_blue = "#768cb4",
2021-09-07 23:01:03 +00:00
blue = "#8197bf",
2021-09-07 22:55:22 +00:00
yellow = "#fad07a",
sun = "#ffb964",
purple = "#b4bbc8",
dark_purple = "#c6b6ee",
2021-09-07 22:55:22 +00:00
teal = "#668799",
orange = "#e78a4e",
2021-09-07 23:01:03 +00:00
cyan = "#8fbfdc",
2021-09-08 12:26:54 +00:00
statusline_bg = "#191919",
lightbg = "#252525",
lightbg2 = "#1e1e1e",
2021-09-07 22:55:22 +00:00
pmenu_bg = "#8197bf",
folder_bg = "#8197bf",
}
return colors