First stab at converting to farout palette
Also renamed all/most instances of tokyonight to farout
This commit is contained in:
38
lua/lightline/colorscheme/farout.lua
Normal file
38
lua/lightline/colorscheme/farout.lua
Normal file
@@ -0,0 +1,38 @@
|
||||
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
|
||||
Reference in New Issue
Block a user