First stab at converting to farout palette
Also renamed all/most instances of tokyonight to farout
This commit is contained in:
41
lua/farout/extra/windows_terminal.lua
Normal file
41
lua/farout/extra/windows_terminal.lua
Normal file
@@ -0,0 +1,41 @@
|
||||
local util = require("farout.util")
|
||||
|
||||
local M = {}
|
||||
|
||||
--- @param colors ColorScheme
|
||||
function M.generate(colors)
|
||||
local windows_terminal = util.template(
|
||||
[[
|
||||
# Add the following object to your Windows Terminal configuration
|
||||
# https://learn.microsoft.com/en-us/windows/terminal/customize-settings/color-schemes#creating-your-own-color-scheme
|
||||
{
|
||||
"background": "${bg}",
|
||||
"black": "${black}",
|
||||
"blue": "${blue}",
|
||||
"brightBlack": "${terminal_black}",
|
||||
"brightBlue": "${blue}",
|
||||
"brightCyan": "${cyan}",
|
||||
"brightGreen": "${green}",
|
||||
"brightPurple": "${purple}",
|
||||
"brightRed": "${red}",
|
||||
"brightWhite": "${fg}",
|
||||
"brightYellow": "${yellow}",
|
||||
"cursorColor": "${fg}",
|
||||
"cyan": "${cyan}",
|
||||
"foreground": "${fg}",
|
||||
"green": "${green}",
|
||||
"name": "${_style_name}",
|
||||
"purple": "${magenta}",
|
||||
"red": "${red}",
|
||||
"selectionBackground": "${bg_visual}",
|
||||
"white": "${fg_dark}",
|
||||
"yellow": "${yellow}"
|
||||
}
|
||||
]],
|
||||
colors
|
||||
)
|
||||
|
||||
return windows_terminal
|
||||
end
|
||||
|
||||
return M
|
||||
Reference in New Issue
Block a user