Skip to content

Instantly share code, notes, and snippets.

@krage
Created April 27, 2021 01:00
Show Gist options
  • Save krage/3d0bad0cb03bdfb0f12e8b0bab892f65 to your computer and use it in GitHub Desktop.
Save krage/3d0bad0cb03bdfb0f12e8b0bab892f65 to your computer and use it in GitHub Desktop.
Embark Lualine
local colors = {
deep_space = '#100E23',
space = '#1e1c31',
eclipse = '#3E3859',
red = '#F48FB1',
dark_red = '#ff5458',
green = '#A1EFD3',
dark_green = '#62d196',
yellow = '#ffe9aa',
dark_yellow = '#ffb378',
blue = '#91ddff',
dark_blue = '#65b2ff',
purple = '#c991e1',
dark_purple = '#906cff',
cyan = '#aaffe4',
dark_cyan = '#63f2f1',
clouds = '#cbe3e7',
dark_clouds = '#6B697E',
}
local embark = {
visual = {
a = {fg = colors.deep_space, bg = colors.yellow, 'bold'},
b = {fg = colors.deep_space, bg = colors.dark_yellow}
},
replace = {
a = {fg = colors.deep_space, bg = colors.green, 'bold'},
b = {fg = colors.deep_space, bg = colors.dark_green}
},
inactive = {
c = {fg = colors.dark_clouds, bg = colors.deep_space},
a = {fg = colors.dark_clouds, bg = colors.space, 'bold'},
b = {fg = colors.dark_clouds, bg = colors.space}
},
normal = {
c = {fg = colors.dark_clouds, bg = colors.space},
a = {fg = colors.deep_space, bg = colors.green, 'bold'},
b = {fg = colors.clouds, bg = colors.eclipse}
},
insert = {
a = {fg = colors.deep_space, bg = colors.red, 'bold'},
b = {fg = colors.deep_space, bg = colors.dark_red}
}
}
return embark
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment