Color Values
- HEX
- #D9F99D
- RGB
- rgb(217, 249, 157)
- HSL
- hsl(81, 88%, 80%)
- OKLCH
- oklch(0.938 0.122 124)
- CMYK
- cmyk(13%, 0%, 37%, 2%)
- CSS Variable
- var(--color-lime-200)
- Tailwind Class
- bg-lime-200
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.17:1
On Black
17.99:1
Tailwind Usage — All Utilities
Background
bg-lime-200Text
text-lime-200Border
border-lime-200Ring
ring-lime-200Outline
outline-lime-200Fill
fill-lime-200Stroke
stroke-lime-200From (gradient)
from-lime-200Via (gradient)
via-lime-200To (gradient)
to-lime-200Placeholder
placeholder-lime-200Caret
caret-lime-200Accent
accent-lime-200Decoration
decoration-lime-200Shadow Color
shadow-lime-200Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'lime-200': '#d9f99d',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #D9F99D;
/* RGB */
background-color: rgb(217, 249, 157);
/* HSL */
background-color: hsl(81, 88%, 80%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.938 0.122 124);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-lime-200);
/* Gradient example */
background: linear-gradient(135deg, #d9f99d 0%, #bef264 100%);OKLCH — Modern Color Space
Lightness (L)
0.938
94% perceived brightness
Chroma (C)
0.122
Color intensity / saturation
Hue (H)
124°
Angle on perceptual hue wheel
oklch(0.938 0.122 124)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
Soft accent & border
Shade 200 of the Lime palette
Recommended Uses
- ✓Focus ring outlines
- ✓Divider lines
- ✓Soft tag borders
- ✓Progress track fills
- ✓Decorative underlines
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #D9F99D
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Lime 200
Nearest Tailwind equivalent — #D9F99D
Frequently Asked Questions
- What is the hex code for Tailwind Lime 200?
- Tailwind Lime 200 has the hex code #D9F99D. Its RGB value is rgb(217, 249, 157) and its HSL value is hsl(81, 88%, 80%).
- What Tailwind utility classes use Lime 200?
- Use bg-lime-200 for backgrounds, text-lime-200 for text color, border-lime-200 for borders, and ring-lime-200 for focus rings. In Tailwind v4 the CSS variable var(--color-lime-200) is available natively.
- Is Tailwind Lime 200 WCAG accessible?
- Tailwind Lime 200 achieves a 1.17:1 contrast ratio on white (Fail) and 17.99:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Lime 200?
- Tailwind Lime 200 in OKLCH is oklch(0.938 0.122 124) — lightness 0.938, chroma 0.122, hue 124°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Lime 200 used for?
- At shade 200, Tailwind Lime 200 is best described as "Soft accent & border". Recommended uses: Focus ring outlines, Divider lines, Soft tag borders.