Color Brands

Official brand colors for popular companies

Official Brand Colors

A curated collection of official brand colorsfrom the world’s most recognized companies. These are the exact hex values used in each company’s brand guidelines. Click any color swatch to copy its hex code to your clipboard.

📋
Usage Note:Brand colors are typically trademarked. Use them only to accurately represent a brand — not as your own brand identity. Always refer to a company’s official brand guidelines for the most up-to-date colors and usage rules.

Search & Filter

Showing 30 of 30 brands
FacebookSocial Media
#1877F2
Twitter / XSocial Media
#000000
GoogleTechnology
#4285F4#DB4437#F4B400#0F9D58
YouTubeSocial Media
#FF0000
InstagramSocial Media
#E4405F
LinkedInSocial Media
#0A66C2
WhatsAppSocial Media
#25D366
SpotifyEntertainment
#1DB954
NetflixEntertainment
#E50914
AmazonTechnology
#FF9900
AppleTechnology
#000000
MicrosoftTechnology
#F25022#7FBA00#00A4EF#FFB900
SlackProductivity
#4A154B
DiscordSocial Media
#5865F2
TikTokSocial Media
#000000
PinterestSocial Media
#E60023
RedditSocial Media
#FF4500
TwitchEntertainment
#9146FF
SnapchatSocial Media
#FFFC00
GitHubTechnology
#181717
FigmaDesign
#F24E1E
AdobeDesign
#FF0000
DropboxProductivity
#0061FF
AirbnbTravel
#FF5A5F
UberTravel
#000000
PayPalFinance
#003087
StripeFinance
#635BFF
ZoomProductivity
#2D8CFF
NotionProductivity
#000000
TeslaTechnology
#CC0000

Using Brand Colors in CSS

:root {
  /* Social Media Brand Colors */
  --facebook-blue: #1877F2;
  --instagram-pink: #E4405F;
  --linkedin-blue: #0A66C2;
  --twitter-black: #000000;
  --youtube-red: #FF0000;

  /* Technology Brand Colors */
  --google-blue: #4285F4;
  --google-red: #DB4437;
  --google-yellow: #F4B400;
  --google-green: #0F9D58;
}

.social-icon.facebook { color: var(--facebook-blue); }
.social-icon.instagram { color: var(--instagram-pink); }

Multi-Color Brands

Some companies use multiple colors in their branding. Google and Microsoft are notable examples, each using four distinct colors that work together to create a recognizable identity. When referencing these brands, it’s important to use all their colors in the correct order and proportions.

💡
Pro Tip: When working with brand colors, use CSS custom properties (variables) to define them in one place. This makes it easy to maintain consistency and update colors across your entire project.

Brand Color Accessibility

Not all brand colors meet WCAG accessibility standards when used as text on white backgrounds. Always test contrast ratios before using brand colors for text elements. Many brands provide alternative color variations specifically for digital accessibility compliance.

⚠️
Brand colors may be updated over time. Always check the latest brand guidelines from the official source before using these colors in production projects.