feat(extras): add Tilix themes (#188)
This commit is contained in:
parent
8583ca39dd
commit
e83f1d5b7d
26
extras/tilix_tokyonight_day.json
Normal file
26
extras/tilix_tokyonight_day.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "Tokyo Night Day",
|
||||||
|
"comment": "",
|
||||||
|
"use-theme-colors": false,
|
||||||
|
"foreground-color": "#3760bf",
|
||||||
|
"background-color": "#e1e2e7",
|
||||||
|
"palette": [
|
||||||
|
"#e9e9ed",
|
||||||
|
"#f52a65",
|
||||||
|
"#587539",
|
||||||
|
"#8c6c3e",
|
||||||
|
"#2e7de9",
|
||||||
|
"#9854f1",
|
||||||
|
"#007197",
|
||||||
|
"#6172b0",
|
||||||
|
"#a1a6c5",
|
||||||
|
"#f52a65",
|
||||||
|
"#587539",
|
||||||
|
"#8c6c3e",
|
||||||
|
"#2e7de9",
|
||||||
|
"#9854f1",
|
||||||
|
"#007197",
|
||||||
|
"#3760bf"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
26
extras/tilix_tokyonight_night.json
Normal file
26
extras/tilix_tokyonight_night.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "Tokyo Night",
|
||||||
|
"comment": "",
|
||||||
|
"use-theme-colors": false,
|
||||||
|
"foreground-color": "#c0caf5",
|
||||||
|
"background-color": "#1a1b26",
|
||||||
|
"palette": [
|
||||||
|
"#15161E",
|
||||||
|
"#f7768e",
|
||||||
|
"#9ece6a",
|
||||||
|
"#e0af68",
|
||||||
|
"#7aa2f7",
|
||||||
|
"#bb9af7",
|
||||||
|
"#7dcfff",
|
||||||
|
"#a9b1d6",
|
||||||
|
"#414868",
|
||||||
|
"#f7768e",
|
||||||
|
"#9ece6a",
|
||||||
|
"#e0af68",
|
||||||
|
"#7aa2f7",
|
||||||
|
"#bb9af7",
|
||||||
|
"#7dcfff",
|
||||||
|
"#c0caf5"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
26
extras/tilix_tokyonight_storm.json
Normal file
26
extras/tilix_tokyonight_storm.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "Tokyo Night Storm",
|
||||||
|
"comment": "",
|
||||||
|
"use-theme-colors": false,
|
||||||
|
"foreground-color": "#c0caf5",
|
||||||
|
"background-color": "#24283b",
|
||||||
|
"palette": [
|
||||||
|
"#1D202F",
|
||||||
|
"#f7768e",
|
||||||
|
"#9ece6a",
|
||||||
|
"#e0af68",
|
||||||
|
"#7aa2f7",
|
||||||
|
"#bb9af7",
|
||||||
|
"#7dcfff",
|
||||||
|
"#a9b1d6",
|
||||||
|
"#414868",
|
||||||
|
"#f7768e",
|
||||||
|
"#9ece6a",
|
||||||
|
"#e0af68",
|
||||||
|
"#7aa2f7",
|
||||||
|
"#bb9af7",
|
||||||
|
"#7dcfff",
|
||||||
|
"#c0caf5"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -18,6 +18,7 @@ local extras = {
|
|||||||
tmux = "tmux",
|
tmux = "tmux",
|
||||||
xresources = "Xresources",
|
xresources = "Xresources",
|
||||||
xfceterm = "theme",
|
xfceterm = "theme",
|
||||||
|
tilix = "json",
|
||||||
}
|
}
|
||||||
-- map of style to style name
|
-- map of style to style name
|
||||||
local styles = {
|
local styles = {
|
||||||
|
40
lua/tokyonight/extra/tilix.lua
Normal file
40
lua/tokyonight/extra/tilix.lua
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
local util = require("tokyonight.util")
|
||||||
|
|
||||||
|
local M = {}
|
||||||
|
|
||||||
|
--- @param colors ColorScheme
|
||||||
|
function M.generate(colors)
|
||||||
|
local tilix = util.template(
|
||||||
|
[[
|
||||||
|
{
|
||||||
|
"name": "${_style_name}",
|
||||||
|
"comment": "",
|
||||||
|
"use-theme-colors": false,
|
||||||
|
"foreground-color": "${fg}",
|
||||||
|
"background-color": "${bg}",
|
||||||
|
"palette": [
|
||||||
|
"${black}",
|
||||||
|
"${red}",
|
||||||
|
"${green}",
|
||||||
|
"${yellow}",
|
||||||
|
"${blue}",
|
||||||
|
"${magenta}",
|
||||||
|
"${cyan}",
|
||||||
|
"${fg_dark}",
|
||||||
|
"${terminal_black}",
|
||||||
|
"${red}",
|
||||||
|
"${green}",
|
||||||
|
"${yellow}",
|
||||||
|
"${blue}",
|
||||||
|
"${magenta}",
|
||||||
|
"${cyan}",
|
||||||
|
"${fg}"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]],
|
||||||
|
colors
|
||||||
|
)
|
||||||
|
return tilix
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
Loading…
Reference in New Issue
Block a user