maxmx03.dracula.nvim/lua/dracula/palettes/soft.lua
2023-04-21 18:32:52 -03:00

42 lines
950 B
Lua

local colors = {
fg = '#f8f8f2',
bg = '#282a36',
bgdark = '#262626',
currentline = '#44475a',
selection = '#44475a',
comment = '#7b7f8b',
cyan = '#adf6f6',
green = '#62e884',
orange = '#ffb86c',
pink = '#f286c4',
purple = '#bf9eee',
red = '#ee6666',
yellow = '#e7ee98',
cursor_fg = '#282a36',
cursor_bg = '#f8f8f2',
sign_add = '#62e884',
sign_change = '#ffb866',
sign_delete = '#ee6666',
error = '#ee6666',
warning = '#ffb866',
info = '#97e1f1',
hint = '#97e1f1',
other = '#bf9eee',
blended_orange = '#483F3E',
blended_red = '#46333D',
blended_cyan = '#394552',
blended_green = '#314742',
blended_yellow = '#454745',
blended_purple = '#3F3B52',
blended_pink = '#5B415A',
blended_add = '#314742',
blended_change = '#483F3E',
blended_warning = '#483F3E',
blended_error = '#46333D',
blended_info = '#394552',
blended_hint = '#394552',
blended_other = '#3F3B52',
}
return colors