fix: Make lightline theme use same colors as lualine theme (#95)

This commit is contained in:
Josh Dick
2021-10-21 04:03:14 -04:00
committed by GitHub
parent eede574f9e
commit 8b53447ff6

View File

@@ -5,9 +5,9 @@ local util = require("tokyonight.util")
local tokyonight = {}
tokyonight.normal = {
left = {{ colors.black, colors.blue }, { colors.blue, colors.bg }},
middle = {{ colors.blue, colors.fg_gutter }},
right = {{ colors.fg_sidebar, colors.bg_statusline }, { colors.blue, colors.bg }},
left = {{ colors.black, colors.blue }, { colors.blue, colors.fg_gutter }},
middle = {{ colors.fg, colors.bg_statusline }},
right = {{ colors.black, colors.blue }, { colors.blue, colors.fg_gutter }},
error = {{ colors.black, colors.error }},
warning = {{ colors.black, colors.warning }},
}