11.stylix/modules/discord/common/theme-elements.nix
2025-06-20 23:45:19 +01:00

17 lines
301 B
Nix

name: [
{
stylix.targets.${name}.themeBody = import ./theme-header.nix;
}
(
{ fonts }:
{
stylix.targets.${name}.themeBody = import ./font-theme.nix fonts;
}
)
(
{ colors }:
{
stylix.targets.${name}.themeBody = import ./color-theme.nix colors;
}
)
]