Supabase Dark Color Palette
The official color guide for Supabase Dark. Optimized for coding, accessibility, and modern UI design.
Introduction
Supabase Dark isn't just a color scheme; it's a standard in the coding community. Engineered by Supabase in 2020, this palette addresses the specific needs of developers and designers working in low-light environments.
With a primary background of #1c1c1c, 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 Supabase Dark effectively.
Color Analysis
A breakdown of the verified hex codes and their specific roles in the interface.
| Preview | Role | Hex | RGB |
|---|---|---|---|
| Background | #1c1c1c |
28, 28, 28 | |
| Surface | #2c2c2c |
44, 44, 44 | |
| Accent | #ffffff |
255, 255, 255 | |
| Muted | #9e9e9e |
158, 158, 158 |
Adoption & Psychology
Ergonomics
Using #1c1c1c 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 Supabase Dark is legible for users with varying visual abilities.
Implementation Guide
Copy-paste these snippets to instantly deploy Supabase Dark in your project.
CSS Variables
:root {
/* Supabase Dark Variables */
--bg-primary: #1c1c1c;
--bg-surface: #2c2c2c;
--text-main: #3ecf8e;
--accent: #ffffff;
}
Tailwind Config
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'supabase-dark': {
base: '#1c1c1c',
surface: '#2c2c2c',
accent: '#ffffff',
}
}
}
}
}
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.