feat: add dynamic hard flavour

Someone requested idk who tho
This commit is contained in:
2 * r + 2 * t
2026-02-15 00:24:14 +11:00
parent bca7b12072
commit d890f7c3af
4 changed files with 25 additions and 5 deletions
+2 -2
View File
@@ -106,7 +106,7 @@ def get_colours_for_wall(wall: Path | str, no_smart: bool) -> None:
scheme = Scheme(
{
"name": name,
"flavour": "default",
"flavour": scheme.flavour,
"mode": smart_opts["mode"],
"variant": smart_opts["variant"],
"colours": scheme.colours,
@@ -115,7 +115,7 @@ def get_colours_for_wall(wall: Path | str, no_smart: bool) -> None:
return {
"name": name,
"flavour": "default",
"flavour": scheme.flavour,
"mode": scheme.mode,
"variant": scheme.variant,
"colours": get_colours_for_image(get_thumb(wall, cache), scheme),