mirror of
https://github.com/maxmx03/dracula.nvim.git
synced 2026-09-10 07:26:19 -04:00
42 lines
950 B
Lua
42 lines
950 B
Lua
local colors = {
|
|
fg = '#f8f8f2',
|
|
bg = '#282a36',
|
|
bgdark = '#21222c',
|
|
currentline = '#44475a',
|
|
selection = '#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',
|
|
blended_green = '#2E4940',
|
|
blended_yellow = '#464943',
|
|
blended_purple = '#3E3A53',
|
|
blended_pink = '#5E3E5A',
|
|
blended_add = '#2E4940',
|
|
blended_change = '#483F3E',
|
|
blended_warning = '#483F3E',
|
|
blended_error = '#48303B',
|
|
blended_info = '#374754',
|
|
blended_hint = '#374754',
|
|
blended_other = '#3E3A53',
|
|
}
|
|
|
|
return colors
|