feat: add skin logo support

This commit is contained in:
Austin Pickett 2026-04-07 23:59:11 -04:00
parent af077b2c0d
commit ebd2d83ef2
6 changed files with 108 additions and 13 deletions

View file

@ -205,7 +205,13 @@ def resolve_skin() -> dict:
from hermes_cli.skin_engine import init_skin_from_config, get_active_skin
init_skin_from_config(_load_cfg())
skin = get_active_skin()
return {"name": skin.name, "colors": skin.colors, "branding": skin.branding}
return {
"name": skin.name,
"colors": skin.colors,
"branding": skin.branding,
"banner_logo": skin.banner_logo,
"banner_hero": skin.banner_hero,
}
except Exception:
return {}