neovim-config/lua/themes/gruvbox.lua

34 lines
791 B
Lua
Raw Normal View History

2021-06-26 02:35:24 +00:00
local colors = {
white = "#c7b89d",
2021-06-26 02:38:12 +00:00
darker_black = "#1e2122",
2021-06-26 02:35:24 +00:00
black = "#222526", -- nvim bg
black2 = "#26292a",
2021-07-01 00:56:51 +00:00
one_bg = "#2b2e2f",
one_bg2 = "#2f3233",
one_bg3 = "#313435",
2021-06-26 02:35:24 +00:00
grey = "#46494a",
grey_fg = "#5d6061",
grey_fg2 = "#5b5e5f",
light_grey = "#585b5c",
red = "#ec6b64",
baby_pink = "#ce8196",
pink = "#ff75a0",
line = "#2c2f30", -- for lines like vertsplit
green = "#89b482",
vibrant_green = "#a9b665",
2021-06-26 02:38:12 +00:00
nord_blue = "#6f8faf",
2021-06-26 02:35:24 +00:00
blue = "#6d8dad",
yellow = "#d6b676",
sun = "#d1b171",
purple = "#b4bbc8",
dark_purple = "#cc7f94",
teal = "#749689",
orange = "#e78a4e",
cyan = "#82b3a8",
statusline_bg = "#252829",
lightbg = "#2d3139",
lightbg2 = "#262a32"
}
return colors