14 lines
493 B
Markdown
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
|
|
```
|