Verified Hex Global Trend: United Kingdom

Gmail Dark Color Palette

The official color guide for Gmail Dark. Optimized for productivity, accessibility, and modern UI design.

Introduction

Gmail Dark isn't just a color scheme; it's a standard in the productivity community. Engineered by Google in 2019, this palette addresses the specific needs of developers and designers working in low-light environments.

With a primary background of #202124, 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 Gmail Dark effectively.

Color Analysis

A breakdown of the verified hex codes and their specific roles in the interface.

Preview Role Hex RGB
Background #202124 32, 33, 36
Surface #2d2e30 45, 46, 48
Accent #ea4335 234, 67, 53
Muted #fbbc04 251, 188, 4

Adoption & Psychology

Ergonomics

Using #202124 reduces blue light exposure by approximately 30% compared to standard white backgrounds, making it ideal for the 45% of developers in United Kingdom who code at night.

Accessibility

The contrast ratio between the primary text and background typically exceeds 7:1 (WCAG AAA), ensuring that Gmail Dark is legible for users with varying visual abilities.

Implementation Guide

Copy-paste these snippets to instantly deploy Gmail Dark in your project.

CSS Variables

:root {
 /* Gmail Dark Variables */
 --bg-primary: #202124;
 --bg-surface: #2d2e30;
 --text-main: #e8eaed;
 --accent: #ea4335;
}

Tailwind Config

// tailwind.config.js
module.exports = {
 theme: {
 extend: {
 colors: {
 'gmail-dark': {
 base: '#202124',
 surface: '#2d2e30',
 accent: '#ea4335',
 }
 }
 }
 }
}

Frequently Asked Questions

Why is Gmail Dark so popular?

Its balance of saturation and brightness makes it unique. Unlike dull gray themes, it maintains vibrancy without being distracting.

Can I use this for print?

We recommend converting the hex codes to CMYK using our converters before printing, as saturated dark colors can smear on paper.