First stab at converting to farout palette

Also renamed all/most instances of tokyonight to farout
This commit is contained in:
2023-12-01 15:30:50 -05:00
parent f247ee700b
commit 1752319cc5
130 changed files with 18963 additions and 301 deletions

View File

@@ -1,8 +1,8 @@
local colors = require("tokyonight.colors").setup({ transform = true })
local colors = require("farout.colors").setup({ transform = true })
local tokyonight = {}
local farout = {}
tokyonight.normal = {
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 } },
@@ -10,29 +10,29 @@ tokyonight.normal = {
warning = { { colors.black, colors.warning } },
}
tokyonight.insert = {
farout.insert = {
left = { { colors.black, colors.green }, { colors.blue, colors.bg } },
}
tokyonight.visual = {
farout.visual = {
left = { { colors.black, colors.magenta }, { colors.blue, colors.bg } },
}
tokyonight.replace = {
farout.replace = {
left = { { colors.black, colors.red }, { colors.blue, colors.bg } },
}
tokyonight.inactive = {
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 } },
}
tokyonight.tabline = {
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 tokyonight
return farout