2021-02-13 00:03:57 +00:00
|
|
|
-- Copyright (c) 2020-2021 shadmansaleh
|
|
|
|
-- MIT license, see LICENSE for more details.
|
|
|
|
-- Credit itchyny, jackno (lightline)
|
2021-01-08 01:35:09 +00:00
|
|
|
local dracula = {}
|
2021-03-15 23:37:46 +00:00
|
|
|
-- LuaFormatter off
|
2021-01-04 01:14:29 +00:00
|
|
|
local colors = {
|
2021-03-15 23:37:46 +00:00
|
|
|
gray = '#44475a',
|
|
|
|
lightgray = '#5f6a8e',
|
|
|
|
orange = '#ffb86c',
|
|
|
|
purple = '#bd93f9',
|
|
|
|
red = '#ff5555',
|
|
|
|
yellow = '#f1fa8c',
|
|
|
|
green = '#50fa7b',
|
|
|
|
white = '#f8f8f2',
|
|
|
|
black = '#282a36',
|
2021-01-02 17:35:36 +00:00
|
|
|
}
|
2021-03-15 23:37:46 +00:00
|
|
|
-- LuaFormatter on
|
2021-01-02 17:35:36 +00:00
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
dracula.normal = {
|
2021-03-15 23:37:46 +00:00
|
|
|
a = {bg = colors.purple, fg = colors.black, gui = 'bold'},
|
|
|
|
b = {bg = colors.lightgray, fg = colors.white},
|
|
|
|
c = {bg = colors.gray, fg = colors.white}
|
2021-01-02 17:35:36 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
dracula.insert = {
|
2021-03-15 23:37:46 +00:00
|
|
|
a = {bg = colors.green, fg = colors.black, gui = 'bold'},
|
|
|
|
b = {bg = colors.lightgray, fg = colors.white},
|
|
|
|
c = {bg = colors.gray, fg = colors.white}
|
2021-01-02 17:35:36 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
dracula.visual = {
|
2021-03-15 23:37:46 +00:00
|
|
|
a = {bg = colors.yellow, fg = colors.black, gui = 'bold'},
|
|
|
|
b = {bg = colors.lightgray, fg = colors.white},
|
|
|
|
c = {bg = colors.gray, fg = colors.white}
|
2021-01-02 17:35:36 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
dracula.replace = {
|
2021-03-15 23:37:46 +00:00
|
|
|
a = {bg = colors.red, fg = colors.black, gui = 'bold'},
|
|
|
|
b = {bg = colors.lightgray, fg = colors.white},
|
|
|
|
c = {bg = colors.gray, fg = colors.white}
|
2021-01-02 17:35:36 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
dracula.command = {
|
2021-03-15 23:37:46 +00:00
|
|
|
a = {bg = colors.orange, fg = colors.black, gui = 'bold'},
|
|
|
|
b = {bg = colors.lightgray, fg = colors.white},
|
|
|
|
c = {bg = colors.gray, fg = colors.white}
|
2021-01-02 17:35:36 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
dracula.inactive = {
|
2021-03-15 23:37:46 +00:00
|
|
|
a = {bg = colors.gray, fg = colors.white, gui = 'bold'},
|
|
|
|
b = {bg = colors.lightgray, fg = colors.white},
|
|
|
|
c = {bg = colors.gray, fg = colors.white}
|
2021-01-02 17:35:36 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
return dracula
|