This repository serves as a content delivery network (CDN) for images used across various applications and projects. It provides a centralized location for hosting and serving static image assets via direct URLs.
- logoBlack.png - Black version of the logo
- logoBlue.png - Blue version of the logo
- logoRed.png - Red version of the logo
- logoWhite.png - White version of the logo
- wordmarkDark.png - Dark theme wordmark
- wordmarkLight.png - Light theme wordmark
- emailFacebook.png - Facebook email template image
- emailInBug.png - Email bug report image
- emailLogoRed.png - Red logo for email templates
- faviconRed.ico - Red-themed website favicon
To use these images in your applications, reference them using the raw GitHub URL format with the ?raw=true parameter:
https://raw.githubusercontent.com/[USERNAME]/images/main/[FILENAME]?raw=true
For better performance and reliability, use jsDelivr CDN:
https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/[FILENAME]
Logos:
- Black Logo:
https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/logoBlack.png - Blue Logo:
https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/logoBlue.png - Red Logo:
https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/logoRed.png - White Logo:
https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/logoWhite.png
Wordmarks:
- Dark Wordmark:
https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/wordmarkDark.png - Light Wordmark:
https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/wordmarkLight.png
Email Assets:
- Email Facebook:
https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/emailFacebook.png - Email Bug Report:
https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/emailInBug.png - Email Logo Red:
https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/emailLogoRed.png
Icons:
- Red Favicon:
https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/faviconRed.ico
<!-- Logo variations -->
<img src="https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/logoBlack.png" alt="Logo - Black">
<img src="https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/logoBlue.png" alt="Logo - Blue">
<img src="https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/logoRed.png" alt="Logo - Red">
<img src="https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/logoWhite.png" alt="Logo - White">
<!-- Wordmarks -->
<img src="https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/wordmarkDark.png" alt="Wordmark - Dark">
<img src="https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/wordmarkLight.png" alt="Wordmark - Light">
<!-- Email Assets -->
<img src="https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/emailFacebook.png" alt="Email - Facebook">
<img src="https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/emailInBug.png" alt="Email - Bug Report">
<img src="https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/emailLogoRed.png" alt="Email Logo - Red">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/faviconRed.ico"><!-- Logo variations -->
<img src="https://raw.githubusercontent.com/[USERNAME]/images/main/logoBlack.png?raw=true" alt="Logo - Black">
<img src="https://raw.githubusercontent.com/[USERNAME]/images/main/logoBlue.png?raw=true" alt="Logo - Blue">
<img src="https://raw.githubusercontent.com/[USERNAME]/images/main/logoRed.png?raw=true" alt="Logo - Red">
<img src="https://raw.githubusercontent.com/[USERNAME]/images/main/logoWhite.png?raw=true" alt="Logo - White">
<!-- Wordmarks -->
<img src="https://raw.githubusercontent.com/[USERNAME]/images/main/wordmarkDark.png?raw=true" alt="Wordmark - Dark">
<img src="https://raw.githubusercontent.com/[USERNAME]/images/main/wordmarkLight.png?raw=true" alt="Wordmark - Light">
<!-- Email Assets -->
<img src="https://raw.githubusercontent.com/[USERNAME]/images/main/emailFacebook.png?raw=true" alt="Email - Facebook">
<img src="https://raw.githubusercontent.com/[USERNAME]/images/main/emailInBug.png?raw=true" alt="Email - Bug Report">
<img src="https://raw.githubusercontent.com/[USERNAME]/images/main/emailLogoRed.png?raw=true" alt="Email Logo - Red">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="https://raw.githubusercontent.com/[USERNAME]/images/main/faviconRed.ico?raw=true">.logo-black {
background-image: url('https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/logoBlack.png');
}
.logo-white {
background-image: url('https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/logoWhite.png');
}
.wordmark-dark {
background-image: url('https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/wordmarkDark.png');
}
.email-logo {
background-image: url('https://cdn.jsdelivr.net/gh/[USERNAME]/images@main/emailLogoRed.png');
}.logo-black {
background-image: url('https://raw.githubusercontent.com/[USERNAME]/images/main/logoBlack.png?raw=true');
}
.logo-white {
background-image: url('https://raw.githubusercontent.com/[USERNAME]/images/main/logoWhite.png?raw=true');
}
.wordmark-dark {
background-image: url('https://raw.githubusercontent.com/[USERNAME]/images/main/wordmarkDark.png?raw=true');
}
.email-logo {
background-image: url('https://raw.githubusercontent.com/[USERNAME]/images/main/emailLogoRed.png?raw=true');
}



- PNG: Used for logos, wordmarks, and email assets with transparency support
- ICO: Used for favicon (browser icon format)
- Prefer jsDelivr CDN: Use jsDelivr for better performance, global CDN, and automatic compression
- GitHub Raw URLs as fallback: Keep GitHub raw URLs as a backup option
- Choose the right format: Use PNG for logos and graphics that need transparency
- Consider theme compatibility: Use appropriate color variants (dark/light) based on your application's theme
- Email assets: Use the email-specific images for consistent branding in email templates
- Optimize loading: Consider image dimensions and file sizes for your use case
- Cache considerations: jsDelivr provides excellent caching, but consider implementing additional caching strategies for production applications
- Version pinning: Use
@mainfor latest versions or pin to specific commits for stability
To add new images or update existing ones:
- Fork this repository
- Add your images to the root directory
- Update this README with the new image information
- Submit a pull request
- Use descriptive, lowercase names
- Separate words with camelCase or underscores
- Include color/theme variations in the filename (e.g.,
logoBlack.png,wordmarkDark.jpg)
Please see the license.md file for licensing information and usage permissions.
- This repository uses GitHub's raw file serving capability as a simple CDN solution
- For high-traffic production applications, consider using a dedicated CDN service
- Images are served with appropriate MIME types automatically by GitHub
- CORS is handled by GitHub for cross-origin requests
Last updated: October 2025