Space Grey Color Palette
The official color guide for Space Grey. Optimized for minimal, accessibility, and modern UI design.
Introduction
Space Grey isn't just a color scheme; it's a standard in the minimal community. Engineered by Apple Inspired in 2018, 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 Space Grey 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 | #3c4043 |
60, 64, 67 | |
| Accent | #80868b |
128, 134, 139 | |
| Muted | #bdc1c6 |
189, 193, 198 |
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 Germany who code at night.
Accessibility
The contrast ratio between the primary text and background typically exceeds 7:1 (WCAG AAA), ensuring that Space Grey is legible for users with varying visual abilities.
Implementation Guide
Copy-paste these snippets to instantly deploy Space Grey in your project.
CSS Variables
:root {
/* Space Grey Variables */
--bg-primary: #202124;
--bg-surface: #3c4043;
--text-main: #5f6368;
--accent: #80868b;
}
Tailwind Config
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'space-grey': {
base: '#202124',
surface: '#3c4043',
accent: '#80868b',
}
}
}
}
}
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.