44 lines
999 B
Lua
44 lines
999 B
Lua
-- Copyright (c) 2020-2021 shadmansaleh
|
|
-- MIT license, see LICENSE for more details.
|
|
-- Credit: challsted(lightline)
|
|
|
|
local molokai = {}
|
|
|
|
local colors = {
|
|
black = '#232526',
|
|
gray = '#808080',
|
|
white = '#f8f8f2',
|
|
cyan = '#66d9ef',
|
|
green = '#a6e22e',
|
|
orange = '#ef5939',
|
|
pink = '#f92672',
|
|
red = '#ff0000',
|
|
yellow = '#e6db74',
|
|
}
|
|
|
|
molokai.normal = {
|
|
a = { fg = colors.black, bg = colors.cyan , gui = 'bold', },
|
|
b = { fg = colors.black, bg = colors.pink , },
|
|
c = { fg = colors.orange, bg = colors.black , }
|
|
}
|
|
|
|
molokai.insert = {
|
|
a = { fg = colors.black, bg = colors.green , gui = 'bold', },
|
|
}
|
|
|
|
molokai.visual = {
|
|
a = { fg = colors.black, bg = colors.yellow , gui = 'bold', },
|
|
}
|
|
|
|
molokai.replace = {
|
|
a = { fg = colors.black, bg = colors.red , gui = 'bold', },
|
|
}
|
|
|
|
molokai.inactive = {
|
|
a = { fg = colors.pink, bg = colors.black , gui = 'bold', },
|
|
b = { fg = colors.white, bg = colors.pink , },
|
|
c = { fg = colors.gray, bg = colors.black , },
|
|
}
|
|
|
|
return molokai
|