farout.nvim/lua/barbecue/theme/farout.lua
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

43 lines
1.3 KiB
Lua

local c = require("farout.colors").setup({ transform = true })
local M = {
normal = { bg = c.none, fg = c.fg_dark },
ellipsis = { fg = c.dark5 },
separator = { fg = c.dark5 },
modified = { fg = c.warning },
dirname = { fg = c.dark5 },
basename = { fg = c.fg_dark, bold = true },
context = { fg = c.fg_dark },
context_file = { fg = c.fg_dark },
context_module = { fg = c.yellow },
context_namespace = { fg = c.yellow },
context_package = { fg = c.blue },
context_class = { fg = c.orange },
context_method = { fg = c.blue },
context_property = { fg = c.green1 },
context_field = { fg = c.green1 },
context_constructor = { fg = c.blue },
context_enum = { fg = c.orange },
context_interface = { fg = c.orange },
context_function = { fg = c.blue },
context_variable = { fg = c.magenta },
context_constant = { fg = c.magenta },
context_string = { fg = c.green },
context_number = { fg = c.orange },
context_boolean = { fg = c.orange },
context_array = { fg = c.orange },
context_object = { fg = c.orange },
context_key = { fg = c.purple },
context_null = { fg = c.blue1 },
context_enum_member = { fg = c.green1 },
context_struct = { fg = c.orange },
context_event = { fg = c.orange },
context_operator = { fg = c.green1 },
context_type_parameter = { fg = c.green1 },
}
return M