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