GitHub Dark Color Palette
The official color guide for GitHub Dark. Optimized for coding, accessibility, and modern UI design.
Introduction
GitHub Dark isn't just a color scheme; it's a standard in the coding community. Engineered by GitHub in 2020, this palette addresses the specific needs of developers and designers working in low-light environments.
With a primary background of #0d1117, 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 GitHub Dark effectively.
Color Analysis
A breakdown of the verified hex codes and their specific roles in the interface.
| Preview | Role | Hex | RGB |
|---|---|---|---|
| Background | #0d1117 |
13, 17, 23 | |
| Surface | #161b22 |
22, 27, 34 | |
| Accent | #58a6ff |
88, 166, 255 | |
| Muted | #8b949e |
139, 148, 158 |
Adoption & Psychology
Ergonomics
Using #0d1117 reduces blue light exposure by approximately 30% compared to standard white backgrounds, making it ideal for the 45% of developers in Canada who code at night.
Accessibility
The contrast ratio between the primary text and background typically exceeds 7:1 (WCAG AAA), ensuring that GitHub Dark is legible for users with varying visual abilities.
Implementation Guide
Copy-paste these snippets to instantly deploy GitHub Dark in your project.
CSS Variables
:root {
/* GitHub Dark Variables */
--bg-primary: #0d1117;
--bg-surface: #161b22;
--text-main: #21262d;
--accent: #58a6ff;
}
Tailwind Config
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'github-dark': {
base: '#0d1117',
surface: '#161b22',
accent: '#58a6ff',
}
}
}
}
}
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.