2024-10-07 12:30:47 +00:00
|
|
|
{ writeTextDir, ... }:
|
2024-09-28 14:54:39 +00:00
|
|
|
let
|
|
|
|
themes = [
|
2024-10-07 12:30:47 +00:00
|
|
|
{ name = "catppuccin-latte"; src = ./themes/catppuccin-latte.kak; }
|
2024-09-28 14:54:39 +00:00
|
|
|
];
|
|
|
|
|
2024-10-07 12:30:47 +00:00
|
|
|
themeToColorscheme = { name, src }: writeTextDir "share/kak/colors/${name}.kak" (builtins.readFile src);
|
2024-09-28 14:54:39 +00:00
|
|
|
in
|
|
|
|
builtins.map themeToColorscheme themes
|