Complete brand asset library for TelemetryOS, optimized for modern web and mobile platforms (2025 standards).
🌐 View Interactive Asset Browser Browse, preview, and download all brand assets through our GitHub Pages site with interactive galleries, code examples, and platform-specific guidelines.
- Core Brand Marks - Master logomarks and wordmarks in SVG, PNG, and WebP
- Web Icons - Modern favicon implementation with PWA support
- Mobile Assets - iOS and Android app icons
brandmarks/
├── core/ # Source of truth - master brand files
│ ├── logomarks/ # Square TelemetryOS logomark (amber, black, white)
│ └── wordmarks/ # Horizontal wordmark (4:1 aspect ratio)
├── web/ # Favicon and web icons
└── mobile/ # iOS and Android app icons
├── ios/ # Apple App Store assets
└── android/ # Google Play Store assets
Web Implementation:
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/brandmarks/web/favicon.svg">
<link rel="icon" type="image/x-icon" href="/brandmarks/web/favicon.ico">
<link rel="apple-touch-icon" href="/brandmarks/web/apple-touch-icon.png">
<!-- PWA Manifest -->
<link rel="manifest" href="/site.webmanifest">
<!-- Logomark (responsive with WebP) -->
<picture>
<source srcset="/brandmarks/core/logomarks/telemetryos-logomark-amber-256.webp" type="image/webp">
<img src="/brandmarks/core/logomarks/telemetryos-logomark-amber-256.png" alt="TelemetryOS" width="256">
</picture>Core Assets (brandmarks/core/):
- Logomarks: 32px, 64px, 128px, 256px, 512px, 1024px (square)
- Wordmarks: 64px, 128px, 256px, 512px (4:1 ratio)
- Colors: Amber (#F8B334), Black (#000000), White (#FFFFFF)
- Formats: SVG (scalable), PNG (universal), WebP (optimized)
Use SVG when possible - scalable, smallest file size, 97%+ browser support
| Color | HEX | RGB | CMYK | Usage |
|---|---|---|---|---|
| Amber (Primary) | #F8B334 |
248, 179, 52 | C:0 M:28 Y:79 K:3 | Primary brand color, light backgrounds |
| Black | #000000 |
0, 0, 0 | C:0 M:0 Y:0 K:100 | Professional contexts, monochrome |
| White | #FFFFFF |
255, 255, 255 | C:0 M:0 Y:0 K:0 | Dark backgrounds, overlays |
- Use
brandmarks/mobile/ios/app-icon-1024x1024.png - Required by Apple App Store (PNG only)
- Follow Apple Human Interface Guidelines
- Use
brandmarks/mobile/android/adaptive-icon-*.png - Supports adaptive icons (foreground + background)
- Follow Material Design guidelines
- Include
site.webmanifestin your root directory - Reference icons from
brandmarks/web/ - Theme color:
#F8B334(amber)
telemetryos-logomark-{color}-{size}.{format}
- Colors: amber, black, white
- Sizes: 32, 64, 128, 256, 512, 1024 (pixels)
- Formats: png, webp, svg
telemetryos-wordmark-{color}-{width}.{format}
- Colors: amber, black, white
- Widths: 64, 128, 256, 512 (height = width / 4)
- Formats: png, webp, svg
- AGENTS.md - Complete technical documentation for LLM agents
- CLAUDE.md - Quick reference for AI assistants
- site.webmanifest - PWA configuration
sips -Z 256 brandmarks/core/logomarks/telemetryos-logomark-amber.svg --out output-256.png
cwebp -q 90 output-256.png -o output-256.webp# Use -Z (uppercase) to maintain aspect ratio
sips -Z 512 source.png --out output-512.png
# Never stretch - wordmarks are 4:1 ratio- Total Files: ~90 files
- Core Assets: 66 files (source of truth)
- Web/Mobile: 22 files (favicons + app icons)
This repository has been modernized for 2025 standards:
✅ WebP + PNG fallback for optimal performance ✅ Removed legacy formats (Windows tiles, mstiles) ✅ Eliminated duplicate assets across directories ✅ Modern favicon implementation (SVG + ICO) ✅ Essential platforms only (no YouTube, TikTok, Discord assets) ✅ Clean structure with single source of truth
All assets are proprietary to TelemetryOS. Unauthorized use is prohibited.
When adding new assets:
- Start with
brandmarks/core/(source of truth) - Generate platform-specific variants as needed
- Include both PNG and WebP for raster images
- Follow existing naming conventions
- Update documentation
Questions? See AGENTS.md for detailed technical documentation.