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