WhatsApp Dark Color Palette
The official color guide for WhatsApp Dark. Optimized for social, accessibility, and modern UI design.
Introduction
WhatsApp Dark isn't just a color scheme; it's a standard in the social community. Engineered by Meta in 2020, this palette addresses the specific needs of developers and designers working in low-light environments.
With a primary background of #121b22, it eliminates the harsh contrast of pure black while providing deep immersion.
This guide covers the technical specifications, psychology, and implementation details you need to use WhatsApp Dark effectively.
Color Analysis
A breakdown of the verified hex codes and their specific roles in the interface.
| Preview | Role | Hex | RGB |
|---|---|---|---|
| Background | #121b22 |
18, 27, 34 | |
| Surface | #1f2c34 |
31, 44, 52 | |
| Accent | #e9edef |
233, 237, 239 | |
| Muted | #8696a0 |
134, 150, 160 |
Adoption & Psychology
Ergonomics
Using #121b22 reduces blue light exposure by approximately 30% compared to standard white backgrounds, making it ideal for the 45% of developers in United States who code at night.
Accessibility
The contrast ratio between the primary text and background typically exceeds 7:1 (WCAG AAA), ensuring that WhatsApp Dark is legible for users with varying visual abilities.
Implementation Guide
Copy-paste these snippets to instantly deploy WhatsApp Dark in your project.
CSS Variables
:root {
/* WhatsApp Dark Variables */
--bg-primary: #121b22;
--bg-surface: #1f2c34;
--text-main: #00a884;
--accent: #e9edef;
}
Tailwind Config
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'whatsapp-dark': {
base: '#121b22',
surface: '#1f2c34',
accent: '#e9edef',
}
}
}
}
}
Frequently Asked Questions
Its balance of saturation and brightness makes it unique. Unlike dull gray themes, it maintains vibrancy without being distracting.
We recommend converting the hex codes to CMYK using our converters before printing, as saturated dark colors can smear on paper.