Color Values
- HEX
- #365314
- RGB
- rgb(54, 83, 20)
- HSL
- hsl(88, 61%, 20%)
- OKLCH
- oklch(0.405 0.096 131)
- CMYK
- cmyk(35%, 0%, 76%, 67%)
- CSS Variable
- var(--color-lime-900)
- Tailwind Class
- bg-lime-900
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
8.73:1
On Black
2.4:1
Tailwind Usage — All Utilities
Background
bg-lime-900Text
text-lime-900Border
border-lime-900Ring
ring-lime-900Outline
outline-lime-900Fill
fill-lime-900Stroke
stroke-lime-900From (gradient)
from-lime-900Via (gradient)
via-lime-900To (gradient)
to-lime-900Placeholder
placeholder-lime-900Caret
caret-lime-900Accent
accent-lime-900Decoration
decoration-lime-900Shadow Color
shadow-lime-900Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'lime-900': '#365314',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #365314;
/* RGB */
background-color: rgb(54, 83, 20);
/* HSL */
background-color: hsl(88, 61%, 20%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.405 0.096 131);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-lime-900);
/* Gradient example */
background: linear-gradient(135deg, #f7fee7 0%, #1a2e05 100%);OKLCH — Modern Color Space
Lightness (L)
0.405
41% perceived brightness
Chroma (C)
0.096
Color intensity / saturation
Hue (H)
131°
Angle on perceptual hue wheel
oklch(0.405 0.096 131)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
Strong dark tone
Shade 900 of the Lime palette
Recommended Uses
- ✓Body text on white
- ✓Dark panel backgrounds
- ✓Near-dark UI elements
- ✓Footer backgrounds
- ✓High-contrast headings
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #365314
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Lime 900
Nearest Tailwind equivalent — #365314
Frequently Asked Questions
- What is the hex code for Tailwind Lime 900?
- Tailwind Lime 900 has the hex code #365314. Its RGB value is rgb(54, 83, 20) and its HSL value is hsl(88, 61%, 20%).
- What Tailwind utility classes use Lime 900?
- Use bg-lime-900 for backgrounds, text-lime-900 for text color, border-lime-900 for borders, and ring-lime-900 for focus rings. In Tailwind v4 the CSS variable var(--color-lime-900) is available natively.
- Is Tailwind Lime 900 WCAG accessible?
- Tailwind Lime 900 achieves a 8.73:1 contrast ratio on white (AAA) and 2.4:1 on black (Fail). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Lime 900?
- Tailwind Lime 900 in OKLCH is oklch(0.405 0.096 131) — lightness 0.405, chroma 0.096, hue 131°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Lime 900 used for?
- At shade 900, Tailwind Lime 900 is best described as "Strong dark tone". Recommended uses: Body text on white, Dark panel backgrounds, Near-dark UI elements.