Skip to content

telemetrytv/TelemetryOS-Graphical-Resources

Repository files navigation

TelemetryOS Graphical Resources

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.

🎨 What's Inside

  • 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

📁 Structure

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

🚀 Quick Start

For Developers

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>

For Designers

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

🎨 Brand Colors

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

📱 Platform Guidelines

iOS Apps

  • Use brandmarks/mobile/ios/app-icon-1024x1024.png
  • Required by Apple App Store (PNG only)
  • Follow Apple Human Interface Guidelines

Android Apps

  • Use brandmarks/mobile/android/adaptive-icon-*.png
  • Supports adaptive icons (foreground + background)
  • Follow Material Design guidelines

Progressive Web Apps (PWA)

  • Include site.webmanifest in your root directory
  • Reference icons from brandmarks/web/
  • Theme color: #F8B334 (amber)

📐 File Naming

Logomarks (Square)

telemetryos-logomark-{color}-{size}.{format}
  • Colors: amber, black, white
  • Sizes: 32, 64, 128, 256, 512, 1024 (pixels)
  • Formats: png, webp, svg

Wordmarks (4:1 Aspect Ratio)

telemetryos-wordmark-{color}-{width}.{format}
  • Colors: amber, black, white
  • Widths: 64, 128, 256, 512 (height = width / 4)
  • Formats: png, webp, svg

📚 Documentation

🔧 Generating Assets

From SVG (Best Quality)

sips -Z 256 brandmarks/core/logomarks/telemetryos-logomark-amber.svg --out output-256.png
cwebp -q 90 output-256.png -o output-256.webp

Maintaining Aspect Ratio

# Use -Z (uppercase) to maintain aspect ratio
sips -Z 512 source.png --out output-512.png

# Never stretch - wordmarks are 4:1 ratio

📊 Asset Summary

  • Total Files: ~90 files
  • Core Assets: 66 files (source of truth)
  • Web/Mobile: 22 files (favicons + app icons)

✨ 2025 Optimizations

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

📝 License

All assets are proprietary to TelemetryOS. Unauthorized use is prohibited.

🤝 Contributing

When adding new assets:

  1. Start with brandmarks/core/ (source of truth)
  2. Generate platform-specific variants as needed
  3. Include both PNG and WebP for raster images
  4. Follow existing naming conventions
  5. Update documentation

Questions? See AGENTS.md for detailed technical documentation.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •