2021-08-10 11:19:33 +00:00
|
|
|
local colors = {
|
2021-08-16 07:49:09 +00:00
|
|
|
white = "#F8F8F2",
|
|
|
|
darker_black = "#232531",
|
|
|
|
black = "#282A36", -- nvim bg
|
|
|
|
black2 = "#303341",
|
|
|
|
one_bg = "#373844", -- real bg of onedark
|
|
|
|
one_bg2 = "#44475a",
|
|
|
|
one_bg3 = "#565761",
|
|
|
|
grey = "#41434f",
|
|
|
|
grey_fg = "#5a5c68",
|
|
|
|
grey_fg2 = "#5a5c68",
|
|
|
|
light_grey = "#636571",
|
2021-08-19 12:14:48 +00:00
|
|
|
red = "#E95678",
|
2021-08-16 07:49:09 +00:00
|
|
|
baby_pink = "#DE8C92",
|
|
|
|
pink = "#FF79C6",
|
|
|
|
line = "#373844", -- for lines like vertsplit
|
2021-08-19 12:14:48 +00:00
|
|
|
green = "#69ff94",
|
2021-08-16 07:49:09 +00:00
|
|
|
vibrant_green = "#69FF94",
|
|
|
|
nord_blue = "#b389ef",
|
|
|
|
blue = "#BD93F9",
|
|
|
|
yellow = "#F1FA8C",
|
|
|
|
sun = "#FFFFA5",
|
|
|
|
purple = "#BD93F9",
|
|
|
|
dark_purple = "#BD93F9",
|
|
|
|
teal = "#0088cc",
|
|
|
|
orange = "#FFB86C",
|
|
|
|
cyan = "#8BE9FD",
|
|
|
|
statusline_bg = "#2b2d39",
|
|
|
|
lightbg = "#343642",
|
|
|
|
lightbg2 = "#2f313d",
|
2021-08-16 13:34:09 +00:00
|
|
|
pmenu_bg = "#b389ef",
|
2021-08-17 17:51:10 +00:00
|
|
|
folder_bg = "#BD93F9",
|
2021-08-10 11:19:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return colors
|