Color Values
- HEX
- #DCFCE7
- RGB
- rgb(220, 252, 231)
- HSL
- hsl(141, 84%, 93%)
- OKLCH
- oklch(0.962 0.043 157)
- CMYK
- cmyk(13%, 0%, 8%, 1%)
- CSS Variable
- var(--color-green-100)
- Tailwind Class
- bg-green-100
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.1:1
On Black
19.12:1
Tailwind Usage — All Utilities
Background
bg-green-100Text
text-green-100Border
border-green-100Ring
ring-green-100Outline
outline-green-100Fill
fill-green-100Stroke
stroke-green-100From (gradient)
from-green-100Via (gradient)
via-green-100To (gradient)
to-green-100Placeholder
placeholder-green-100Caret
caret-green-100Accent
accent-green-100Decoration
decoration-green-100Shadow Color
shadow-green-100Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'green-100': '#dcfce7',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #DCFCE7;
/* RGB */
background-color: rgb(220, 252, 231);
/* HSL */
background-color: hsl(141, 84%, 93%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.962 0.043 157);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-green-100);
/* Gradient example */
background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);OKLCH — Modern Color Space
Lightness (L)
0.962
96% perceived brightness
Chroma (C)
0.043
Color intensity / saturation
Hue (H)
157°
Angle on perceptual hue wheel
oklch(0.962 0.043 157)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
Light surface & background
Shade 100 of the Green palette
Recommended Uses
- ✓Card backgrounds
- ✓Sidebar fills
- ✓Input field backgrounds
- ✓Chip & badge backgrounds
- ✓Skeleton loaders
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #DCFCE7
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Green 100
Nearest Tailwind equivalent — #DCFCE7
Frequently Asked Questions
- What is the hex code for Tailwind Green 100?
- Tailwind Green 100 has the hex code #DCFCE7. Its RGB value is rgb(220, 252, 231) and its HSL value is hsl(141, 84%, 93%).
- What Tailwind utility classes use Green 100?
- Use bg-green-100 for backgrounds, text-green-100 for text color, border-green-100 for borders, and ring-green-100 for focus rings. In Tailwind v4 the CSS variable var(--color-green-100) is available natively.
- Is Tailwind Green 100 WCAG accessible?
- Tailwind Green 100 achieves a 1.1:1 contrast ratio on white (Fail) and 19.12:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Green 100?
- Tailwind Green 100 in OKLCH is oklch(0.962 0.043 157) — lightness 0.962, chroma 0.043, hue 157°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Green 100 used for?
- At shade 100, Tailwind Green 100 is best described as "Light surface & background". Recommended uses: Card backgrounds, Sidebar fills, Input field backgrounds.