Skip to main content

bg-stone-50

Tailwind Stone 50

#FAFAF9·Stone family·Shade 50

Color Values

HEX
#FAFAF9
RGB
rgb(250, 250, 249)
HSL
hsl(60, 9%, 98%)
OKLCH
oklch(0.985 0.001 106)
CMYK
cmyk(0%, 0%, 0%, 2%)
CSS Variable
var(--color-stone-50)
Tailwind Class
bg-stone-50

Accessibility Score

60/100

Good

Based on WCAG 2.1 contrast ratios against white and black backgrounds.

On White

1.04:1

Fail

On Black

20.11:1

AAA
Test in Contrast Checker →

Tailwind Usage — All Utilities

Background

bg-stone-50

Text

text-stone-50

Border

border-stone-50

Ring

ring-stone-50

Outline

outline-stone-50

Fill

fill-stone-50

Stroke

stroke-stone-50

From (gradient)

from-stone-50

Via (gradient)

via-stone-50

To (gradient)

to-stone-50

Placeholder

placeholder-stone-50

Caret

caret-stone-50

Accent

accent-stone-50

Decoration

decoration-stone-50

Shadow Color

shadow-stone-50

Tailwind v3 Config (extend custom color)

// tailwind.config.js module.exports = { theme: { extend: { colors: { 'stone-50': '#fafaf9', }, }, }, };

CSS Equivalent

/* Hex */
background-color: #FAFAF9;

/* RGB */
background-color: rgb(250, 250, 249);

/* HSL */
background-color: hsl(60, 9%, 98%);

/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.985 0.001 106);

/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-stone-50);

/* Gradient example */
background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);

OKLCH — Modern Color Space

Lightness (L)

0.985

99% perceived brightness

Chroma (C)

0.001

Color intensity / saturation

Hue (H)

106°

Angle on perceptual hue wheel

oklch(0.985 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

Ultra-light background tint

Shade 50 of the Stone palette

Recommended Uses

  • Page backgrounds
  • Subtle section fills
  • Notification banners
  • Hover state backgrounds
  • Table row alternates

Avoid

Text on white — contrast is too low for readability.

Preview

On White

Aa Bb Cc

On Black

Aa Bb Cc

As Background

Aa Bb Cc — #FAFAF9

Frequently Asked Questions

What is the hex code for Tailwind Stone 50?
Tailwind Stone 50 has the hex code #FAFAF9. Its RGB value is rgb(250, 250, 249) and its HSL value is hsl(60, 9%, 98%).
What Tailwind utility classes use Stone 50?
Use bg-stone-50 for backgrounds, text-stone-50 for text color, border-stone-50 for borders, and ring-stone-50 for focus rings. In Tailwind v4 the CSS variable var(--color-stone-50) is available natively.
Is Tailwind Stone 50 WCAG accessible?
Tailwind Stone 50 achieves a 1.04:1 contrast ratio on white (Fail) and 20.11:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
What is the OKLCH value for Tailwind Stone 50?
Tailwind Stone 50 in OKLCH is oklch(0.985 0.001 106) — lightness 0.985, chroma 0.001, hue 106°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
What is Tailwind Stone 50 used for?
At shade 50, Tailwind Stone 50 is best described as "Ultra-light background tint". Recommended uses: Page backgrounds, Subtle section fills, Notification banners.