First stab at converting to farout palette
Also renamed all/most instances of tokyonight to farout
This commit is contained in:
@@ -1,49 +1,49 @@
|
||||
local colors = require("tokyonight.colors").setup({ transform = true })
|
||||
local config = require("tokyonight.config").options
|
||||
local colors = require("farout.colors").setup({ transform = true })
|
||||
local config = require("farout.config").options
|
||||
|
||||
local tokyonight = {}
|
||||
local farout = {}
|
||||
|
||||
tokyonight.normal = {
|
||||
farout.normal = {
|
||||
a = { bg = colors.blue, fg = colors.black },
|
||||
b = { bg = colors.fg_gutter, fg = colors.blue },
|
||||
c = { bg = colors.bg_statusline, fg = colors.fg_sidebar },
|
||||
}
|
||||
|
||||
tokyonight.insert = {
|
||||
farout.insert = {
|
||||
a = { bg = colors.green, fg = colors.black },
|
||||
b = { bg = colors.fg_gutter, fg = colors.green },
|
||||
}
|
||||
|
||||
tokyonight.command = {
|
||||
farout.command = {
|
||||
a = { bg = colors.yellow, fg = colors.black },
|
||||
b = { bg = colors.fg_gutter, fg = colors.yellow },
|
||||
}
|
||||
|
||||
tokyonight.visual = {
|
||||
farout.visual = {
|
||||
a = { bg = colors.magenta, fg = colors.black },
|
||||
b = { bg = colors.fg_gutter, fg = colors.magenta },
|
||||
}
|
||||
|
||||
tokyonight.replace = {
|
||||
farout.replace = {
|
||||
a = { bg = colors.red, fg = colors.black },
|
||||
b = { bg = colors.fg_gutter, fg = colors.red },
|
||||
}
|
||||
|
||||
tokyonight.terminal = {
|
||||
a = {bg = colors.green1, fg = colors.black },
|
||||
b = {bg = colors.fg_gutter, fg=colors.green1 },
|
||||
farout.terminal = {
|
||||
a = { bg = colors.green1, fg = colors.black },
|
||||
b = { bg = colors.fg_gutter, fg = colors.green1 },
|
||||
}
|
||||
|
||||
tokyonight.inactive = {
|
||||
farout.inactive = {
|
||||
a = { bg = colors.bg_statusline, fg = colors.blue },
|
||||
b = { bg = colors.bg_statusline, fg = colors.fg_gutter, gui = "bold" },
|
||||
c = { bg = colors.bg_statusline, fg = colors.fg_gutter },
|
||||
}
|
||||
|
||||
if config.lualine_bold then
|
||||
for _, mode in pairs(tokyonight) do
|
||||
for _, mode in pairs(farout) do
|
||||
mode.a.gui = "bold"
|
||||
end
|
||||
end
|
||||
|
||||
return tokyonight
|
||||
return farout
|
||||
Reference in New Issue
Block a user