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