2021-04-20 11:39:38 +00:00
|
|
|
local util = require("tokyonight.util")
|
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
function M.kitty(config)
|
|
|
|
config = config or require("tokyonight.config")
|
2021-05-02 08:43:18 +00:00
|
|
|
config.transform_colors = true
|
2021-04-20 11:39:38 +00:00
|
|
|
local colors = require("tokyonight.colors").setup(config)
|
|
|
|
|
|
|
|
local kitty = util.template([[
|
|
|
|
# TokyoNight colors for Kitty
|
|
|
|
|
|
|
|
background ${bg}
|
|
|
|
foreground ${fg}
|
|
|
|
selection_background ${bg_visual}
|
|
|
|
selection_foreground ${fg}
|
|
|
|
url_color ${green1}
|
|
|
|
cursor ${fg}
|
|
|
|
|
|
|
|
# Tabs
|
|
|
|
active_tab_background ${blue}
|
|
|
|
active_tab_foreground ${bg_dark}
|
|
|
|
inactive_tab_background ${bg_highlight}
|
|
|
|
inactive_tab_foreground ${dark3}
|
|
|
|
#tab_bar_background ${black}
|
|
|
|
|
|
|
|
# normal
|
2021-05-02 08:16:56 +00:00
|
|
|
color0 ${black}
|
2021-04-20 11:39:38 +00:00
|
|
|
color1 ${red}
|
|
|
|
color2 ${green}
|
|
|
|
color3 ${yellow}
|
|
|
|
color4 ${blue}
|
|
|
|
color5 ${magenta}
|
|
|
|
color6 ${cyan}
|
|
|
|
color7 ${fg_dark}
|
|
|
|
|
|
|
|
# bright
|
|
|
|
color8 ${terminal_black}
|
|
|
|
color9 ${red}
|
|
|
|
color10 ${green}
|
|
|
|
color11 ${yellow}
|
|
|
|
color12 ${blue}
|
|
|
|
color13 ${magenta}
|
|
|
|
color14 ${cyan}
|
|
|
|
color15 ${fg}
|
|
|
|
|
|
|
|
# extended colors
|
|
|
|
color16 ${orange}
|
|
|
|
color17 ${red1}
|
|
|
|
]], colors)
|
|
|
|
return kitty
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|
|
|
|
|