First stab at converting to farout palette

Also renamed all/most instances of tokyonight to farout
This commit is contained in:
2023-12-01 15:30:50 -05:00
parent f247ee700b
commit 1752319cc5
130 changed files with 18963 additions and 301 deletions

View File

@@ -0,0 +1,32 @@
local util = require("farout.util")
local M = {}
--- @param colors ColorScheme
function M.generate(colors)
local dunst = util.template(
[[
# TokyoNight colors for dunst
# For more configuraion options see https://github.com/dunst-project/dunst/blob/master/dunstrc
[urgency_low]
background = "${bg_dark}"
foreground = "${fg}"
frame_color = "${fg}"
[urgency_normal]
background = "${bg}"
foreground = "${fg}"
frame_color = "${fg}"
[urgency_critical]
background = "${bg_highlight}"
foreground = "${error}"
frame_color = "${error}"
]],
colors
)
return dunst
end
return M