b61afc44e6
* docs: fix typo in component notice * refactor: rename typo param 'pattern' * docs: fix comments typos across project files Cleanup misspellings and wording in comment lines. * docs: improve readability of `CONTRIBUTING.md` * docs: improve readability of `README.md` - Minor typos - Clarify information - Separate sections from paragraphs * docs: add newline below headers in `THEMES.md` Aim's to be consistent with other documents. * docs: fix unname tabpage command reference * docs: reword 'directly bused' for `setup_theme()` * docs: fix extra indent in contribution list * docs: more separation in readme/tabs, remove extra backtick * docs: further improve wording for `setup_theme` * docs: improve wording for `setup` function * docs: missing underscore in lualine/config
43 lines
1.3 KiB
Lua
43 lines
1.3 KiB
Lua
-- Copyright (c) 2020-2021 shadmansaleh
|
|
-- MIT license, see LICENSE for more details.
|
|
-- Generated by lightline to lualine theme converter
|
|
-- https://gist.github.com/shadmansaleh/000871c9a608a012721c6acc6d7a19b9
|
|
-- stylua: ignore
|
|
local colors = {
|
|
color2 = '#161821',
|
|
color3 = '#b4be82',
|
|
color4 = '#6b7089',
|
|
color5 = '#2e313f',
|
|
color8 = '#e2a478',
|
|
color9 = '#3e445e',
|
|
color10 = '#0f1117',
|
|
color11 = '#17171b',
|
|
color12 = '#818596',
|
|
color15 = '#84a0c6',
|
|
}
|
|
|
|
return {
|
|
visual = {
|
|
a = { fg = colors.color2, bg = colors.color3, gui = 'bold' },
|
|
b = { fg = colors.color4, bg = colors.color5 },
|
|
},
|
|
replace = {
|
|
a = { fg = colors.color2, bg = colors.color8, gui = 'bold' },
|
|
b = { fg = colors.color4, bg = colors.color5 },
|
|
},
|
|
inactive = {
|
|
c = { fg = colors.color9, bg = colors.color10 },
|
|
a = { fg = colors.color9, bg = colors.color10, gui = 'bold' },
|
|
b = { fg = colors.color9, bg = colors.color10 },
|
|
},
|
|
normal = {
|
|
c = { fg = colors.color9, bg = colors.color10 },
|
|
a = { fg = colors.color11, bg = colors.color12, gui = 'bold' },
|
|
b = { fg = colors.color4, bg = colors.color5 },
|
|
},
|
|
insert = {
|
|
a = { fg = colors.color2, bg = colors.color15, gui = 'bold' },
|
|
b = { fg = colors.color4, bg = colors.color5 },
|
|
},
|
|
}
|