Color Values
- HEX
- #052E16
- RGB
- rgb(5, 46, 22)
- HSL
- hsl(145, 80%, 10%)
- OKLCH
- oklch(0.266 0.063 153)
- CMYK
- cmyk(89%, 0%, 52%, 82%)
- CSS Variable
- var(--color-green-950)
- Tailwind Class
- bg-green-950
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
14.91:1
On Black
1.41:1
Tailwind Usage — All Utilities
Background
bg-green-950Text
text-green-950Border
border-green-950Ring
ring-green-950Outline
outline-green-950Fill
fill-green-950Stroke
stroke-green-950From (gradient)
from-green-950Via (gradient)
via-green-950To (gradient)
to-green-950Placeholder
placeholder-green-950Caret
caret-green-950Accent
accent-green-950Decoration
decoration-green-950Shadow Color
shadow-green-950Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'green-950': '#052e16',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #052E16;
/* RGB */
background-color: rgb(5, 46, 22);
/* HSL */
background-color: hsl(145, 80%, 10%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.266 0.063 153);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-green-950);
/* Gradient example */
background: linear-gradient(135deg, #f0fdf4 0%, #052e16 100%);OKLCH — Modern Color Space
Lightness (L)
0.266
27% perceived brightness
Chroma (C)
0.063
Color intensity / saturation
Hue (H)
153°
Angle on perceptual hue wheel
oklch(0.266 0.063 153)OKLCH is a perceptually uniform color space in CSS Color Level 4. Unlike HSL, equal steps in L produce equal perceived lightness changes — making it ideal for building accessible, harmonious design system scales.
Design Recommendations
Ultra-dark near-black variant
Shade 950 of the Green palette
Recommended Uses
- ✓Maximum-contrast text on white
- ✓Rich dark card backgrounds
- ✓Dark theme page backgrounds
- ✓Tinted near-black UI surfaces
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #052E16
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Green 950
Nearest Tailwind equivalent — #052E16
Frequently Asked Questions
- What is the hex code for Tailwind Green 950?
- Tailwind Green 950 has the hex code #052E16. Its RGB value is rgb(5, 46, 22) and its HSL value is hsl(145, 80%, 10%).
- What Tailwind utility classes use Green 950?
- Use bg-green-950 for backgrounds, text-green-950 for text color, border-green-950 for borders, and ring-green-950 for focus rings. In Tailwind v4 the CSS variable var(--color-green-950) is available natively.
- Is Tailwind Green 950 WCAG accessible?
- Tailwind Green 950 achieves a 14.91:1 contrast ratio on white (AAA) and 1.41:1 on black (Fail). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Green 950?
- Tailwind Green 950 in OKLCH is oklch(0.266 0.063 153) — lightness 0.266, chroma 0.063, hue 153°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Green 950 used for?
- At shade 950, Tailwind Green 950 is best described as "Ultra-dark near-black variant". Recommended uses: Maximum-contrast text on white, Rich dark card backgrounds, Dark theme page backgrounds.