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