Carbon Gray Palette
A professional grade color scheme for modern interfaces. Optimized for conversion, trust, and readability in digital products.
Overview
The Carbon Gray palette is a cornerstone of modern system design. Widely recognized for its balance and clarity, it is essential for building trustworthy digital experiences. Professional designers select this scheme when they need to convey reliability without sacrificing aesthetic appeal.
Engineered by IBM in 2021, this scheme utilizes standard contrast ratios that define the current standards in tech and product design. It integrates seamlessly into both light and dark modes, offering versatility for cross-platform applications including iOS, Android, and Web.
Global Tech Trends
Adoption data for Carbon Gray across major tech hubs.
In Silicon Valley, the Carbon Gray scheme is widely adopted for modern SaaS enterprise software, reflecting the region's preference for functional and high-performance design. Similarly, tech hubs in London leverage these tones for trusted fintech and banking interfaces, ensuring user trust and engagement.
Color Analysis
Technical breakdown of the palette composition.
| Preview | Role | Hex | RGB |
|---|---|---|---|
| Primary | #161616 |
22, 22, 22 | |
| Secondary | #262626 |
38, 38, 38 | |
| Accent | #393939 |
57, 57, 57 | |
| Accent | #525252 |
82, 82, 82 | |
| Accent | #f4f4f4 |
244, 244, 244 |
Component Guide
How to apply the Carbon Gray palette to common UI elements.
Buttons & Actions
Use the primary color for main conversion actions to draw the user's eye. Ensure touch targets are at least 44px high for mobile compliance.
Information Density
Use darker shades for text hierarchy and lighter shades for backgrounds or inactive states. This ensures the user can scan content quickly.
Accessibility & Contrast
Ensuring your design is usable by everyone.
The Carbon Gray palette is vetted for WCAG 2.1 standards. When using #161616 on white backgrounds, it typically maintains a contrast ratio above 4.5:1, suitable for standard text.
For dark mode implementations, ensure that #262626 text on #f4f4f4 backgrounds preserves readability. Always test with a screen reader or contrast checker tool before deployment as colors vary by display technology.
UI Application
Trust & Professionalism
Colors like #161616 are chosen to instill confidence. In system apps, consistency is key, and this palette enables a coherent design language across the entire user journey.
Best Practices
- Use
#161616for Primary Actions (CTAs) - Use
#f4f4f4for Backgrounds/Surfaces - Ensure text contrast is at least 4.5:1 for accessibility
Frequently Asked Questions
Can I use this for mobile apps?
#161616 is calibrated to be visible outdoors or in varied lighting conditions.
Is this palette suitable for Dark Mode?
#262626) serve as excellent surface colors for dark interfaces, reducing eye strain in low-light environments.
How does this impact conversion?
Code Snippets
Copy-paste implementation for your framework.
CSS Variables
:root {
/* Carbon Gray Variables */
--color-0: #161616;
--color-1: #262626;
--color-2: #393939;
--color-3: #525252;
--color-4: #f4f4f4;
}
Tailwind Config
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'brand': {
100: '#161616',
200: '#262626',
300: '#393939',
400: '#525252',
500: '#f4f4f4',
}
}
}
}
}