burrow/design/brand/README.md
Conrad Kramer 940f46bbbc
Some checks failed
Build Rust / Cargo Test (push) Successful in 4m2s
Build Site / Next.js Build (push) Failing after 4s
Lint Governance / BEP Metadata (push) Successful in 1s
Rebrand app icons around Burrow owl
2026-06-07 20:48:58 -07:00

14 lines
493 B
Markdown

# Burrow Brand Source
`burrow-owl-icon-master.png` is the current generated master for the Burrow app
icon. The mark centers a burrowing owl in a dark brown/black field with minimal
warm brown and gold accents.
Regenerate the Apple app icon PNGs from the master with:
```bash
for f in Apple/UI/Assets.xcassets/AppIcon.appiconset/*.png; do
size="$(basename "$f" .png)"
magick design/brand/burrow-owl-icon-master.png -colorspace sRGB -resize "${size}x${size}!" -strip "PNG24:$f"
done
```