fix: made dracula theme similar to other themes (#121)
This commit is contained in:
parent
ec47bb0447
commit
ed7d186987
|
@ -5,8 +5,8 @@
|
||||||
local dracula = {}
|
local dracula = {}
|
||||||
|
|
||||||
local colors = {
|
local colors = {
|
||||||
grey = "#44475a",
|
gray = "#44475a",
|
||||||
light_gray = "#5f6a8e",
|
lightgray = "#5f6a8e",
|
||||||
orange = "#ffb86c",
|
orange = "#ffb86c",
|
||||||
purple = "#bd93f9",
|
purple = "#bd93f9",
|
||||||
red = "#ff5555",
|
red = "#ff5555",
|
||||||
|
@ -18,38 +18,39 @@ local colors = {
|
||||||
|
|
||||||
dracula.normal = {
|
dracula.normal = {
|
||||||
a = { bg = colors.purple, fg = colors.black, gui = 'bold', },
|
a = { bg = colors.purple, fg = colors.black, gui = 'bold', },
|
||||||
b = { bg = colors.light_gray, fg = colors.white, },
|
b = { bg = colors.lightgray, fg = colors.white, },
|
||||||
c = { bg = colors.grey, fg = colors.white, }
|
c = { bg = colors.gray, fg = colors.white }
|
||||||
}
|
}
|
||||||
|
|
||||||
dracula.insert = {
|
dracula.insert = {
|
||||||
a = { bg = colors.green, fg = colors.black, gui = 'bold', },
|
a = { bg = colors.green, fg = colors.black, gui = 'bold', },
|
||||||
b = { bg = colors.light_gray, fg = colors.white, },
|
b = { bg = colors.lightgray, fg = colors.white, },
|
||||||
c = { bg = colors.grey, fg = colors.white, }
|
c = { bg = colors.gray, fg = colors.white }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
dracula.visual = {
|
dracula.visual = {
|
||||||
a = { bg = colors.yellow, fg = colors.black, gui = 'bold', },
|
a = { bg = colors.yellow, fg = colors.black, gui = 'bold', },
|
||||||
b = { bg = colors.light_gray, fg = colors.white, },
|
b = { bg = colors.lightgray, fg = colors.white, },
|
||||||
c = { bg = colors.grey, fg = colors.white, },
|
c = { bg = colors.gray, fg = colors.white },
|
||||||
}
|
}
|
||||||
|
|
||||||
dracula.replace = {
|
dracula.replace = {
|
||||||
a = { bg = colors.red, fg = colors.black, gui = 'bold', },
|
a = { bg = colors.red, fg = colors.black, gui = 'bold', },
|
||||||
b = { bg = colors.light_gray, fg = colors.white, },
|
b = { bg = colors.lightgray, fg = colors.white, },
|
||||||
c = { bg = colors.grey, fg = colors.white, },
|
c = { bg = colors.gray, fg = colors.white },
|
||||||
}
|
}
|
||||||
|
|
||||||
dracula.command = {
|
dracula.command = {
|
||||||
a = { bg = colors.grey, fg = colors.white, gui = 'bold', },
|
a = { bg = colors.orange, fg = colors.black, gui = 'bold', },
|
||||||
b = { bg = colors.light_gray, fg = colors.white, },
|
b = { bg = colors.lightgray, fg = colors.white, },
|
||||||
c = { bg = colors.purple, fg = colors.white },
|
c = { bg = colors.gray, fg = colors.white },
|
||||||
}
|
}
|
||||||
|
|
||||||
dracula.inactive = {
|
dracula.inactive = {
|
||||||
a = { bg = colors.white, fg = colors.purple, gui = 'bold', },
|
a = { bg = colors.gray, fg = colors.white, gui = 'bold', },
|
||||||
b = { bg = colors.grey, fg = colors.purple, },
|
b = { bg = colors.lightgray, fg = colors.white, },
|
||||||
c = { bg = colors.purple, fg = colors.purple, },
|
c = { bg = colors.gray, fg = colors.white },
|
||||||
}
|
}
|
||||||
|
|
||||||
return dracula
|
return dracula
|
||||||
|
|
Loading…
Reference in New Issue