Color Values
- HEX
- #F7FEE7
- RGB
- rgb(247, 254, 231)
- HSL
- hsl(78, 92%, 95%)
- OKLCH
- oklch(0.986 0.031 121)
- CMYK
- cmyk(3%, 0%, 9%, 0%)
- CSS Variable
- var(--color-lime-50)
- Tailwind Class
- bg-lime-50
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.04:1
On Black
20.29:1
Tailwind Usage — All Utilities
Background
bg-lime-50Text
text-lime-50Border
border-lime-50Ring
ring-lime-50Outline
outline-lime-50Fill
fill-lime-50Stroke
stroke-lime-50From (gradient)
from-lime-50Via (gradient)
via-lime-50To (gradient)
to-lime-50Placeholder
placeholder-lime-50Caret
caret-lime-50Accent
accent-lime-50Decoration
decoration-lime-50Shadow Color
shadow-lime-50Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'lime-50': '#f7fee7',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #F7FEE7;
/* RGB */
background-color: rgb(247, 254, 231);
/* HSL */
background-color: hsl(78, 92%, 95%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.986 0.031 121);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-lime-50);
/* Gradient example */
background: linear-gradient(135deg, #f7fee7 0%, #ecfccb 100%);OKLCH — Modern Color Space
Lightness (L)
0.986
99% perceived brightness
Chroma (C)
0.031
Color intensity / saturation
Hue (H)
121°
Angle on perceptual hue wheel
oklch(0.986 0.031 121)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-light background tint
Shade 50 of the Lime palette
Recommended Uses
- ✓Page backgrounds
- ✓Subtle section fills
- ✓Notification banners
- ✓Hover state backgrounds
- ✓Table row alternates
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #F7FEE7
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Lime 50
Nearest Tailwind equivalent — #F7FEE7
Frequently Asked Questions
- What is the hex code for Tailwind Lime 50?
- Tailwind Lime 50 has the hex code #F7FEE7. Its RGB value is rgb(247, 254, 231) and its HSL value is hsl(78, 92%, 95%).
- What Tailwind utility classes use Lime 50?
- Use bg-lime-50 for backgrounds, text-lime-50 for text color, border-lime-50 for borders, and ring-lime-50 for focus rings. In Tailwind v4 the CSS variable var(--color-lime-50) is available natively.
- Is Tailwind Lime 50 WCAG accessible?
- Tailwind Lime 50 achieves a 1.04:1 contrast ratio on white (Fail) and 20.29:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Lime 50?
- Tailwind Lime 50 in OKLCH is oklch(0.986 0.031 121) — lightness 0.986, chroma 0.031, hue 121°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Lime 50 used for?
- At shade 50, Tailwind Lime 50 is best described as "Ultra-light background tint". Recommended uses: Page backgrounds, Subtle section fills, Notification banners.