mirror of
https://github.com/maxmx03/dracula.nvim.git
synced 2026-09-10 07:26:19 -04:00
30 lines
608 B
Lua
30 lines
608 B
Lua
local colors = {
|
|
fg = "#f8f8f2",
|
|
bg = "#282a36",
|
|
float_bg = "#23252f",
|
|
currentline = "#44475a",
|
|
comment = "#6272a4",
|
|
cyan = "#8be9fd",
|
|
green = "#50fa7b",
|
|
orange = "#ffb86c",
|
|
pink = "#ff79c6",
|
|
purple = "#bd93f9",
|
|
red = "#ff5555",
|
|
yellow = "#f1fa8c",
|
|
cursor_fg = "#282a36",
|
|
cursor_bg = "#f8f8f2",
|
|
sign_add = "#50fa7b",
|
|
sign_change = "#ffb866",
|
|
sign_delete = "#ff5555",
|
|
error = "#ff555b",
|
|
warning = "#ffb866",
|
|
info = "#8be9fd",
|
|
hint = "#8be9fd",
|
|
other = "#bd93f9",
|
|
blended_orange = "#483F3E",
|
|
blended_red = "#48303B",
|
|
blended_cyan = "#374754",
|
|
}
|
|
|
|
return colors
|