Files
Tyler Hallada 1752319cc5 First stab at converting to farout palette
Also renamed all/most instances of tokyonight to farout
2023-12-01 15:30:50 -05:00

39 lines
1.3 KiB
Lua

local colors = require("farout.colors").setup({ transform = true })
local farout = {}
farout.normal = {
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 } },
}
farout.insert = {
left = { { colors.black, colors.green }, { colors.blue, colors.bg } },
}
farout.visual = {
left = { { colors.black, colors.magenta }, { colors.blue, colors.bg } },
}
farout.replace = {
left = { { colors.black, colors.red }, { colors.blue, colors.bg } },
}
farout.inactive = {
left = { { colors.blue, colors.bg_statusline }, { colors.dark3, colors.bg } },
middle = { { colors.fg_gutter, colors.bg_statusline } },
right = { { colors.fg_gutter, colors.bg_statusline }, { colors.dark3, colors.bg } },
}
farout.tabline = {
left = { { colors.dark3, colors.bg_highlight }, { colors.dark3, colors.bg } },
middle = { { colors.fg_gutter, colors.bg_statusline } },
right = { { colors.fg_gutter, colors.bg_statusline }, { colors.dark3, colors.bg } },
tabsel = { { colors.blue, colors.fg_gutter }, { colors.dark3, colors.bg } },
}
return farout