Skip to main content

bg-stone-700

Tailwind Stone 700

#44403C·Stone family·Shade 700

Color Values

HEX
#44403C
RGB
rgb(68, 64, 60)
HSL
hsl(30, 6%, 25%)
OKLCH
oklch(0.374 0.009 68)
CMYK
cmyk(0%, 6%, 12%, 73%)
CSS Variable
var(--color-stone-700)
Tailwind Class
bg-stone-700

Accessibility Score

60/100

Good

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

On White

10.27:1

AAA

On Black

2.04:1

Fail
Test in Contrast Checker →

Tailwind Usage — All Utilities

Background

bg-stone-700

Text

text-stone-700

Border

border-stone-700

Ring

ring-stone-700

Outline

outline-stone-700

Fill

fill-stone-700

Stroke

stroke-stone-700

From (gradient)

from-stone-700

Via (gradient)

via-stone-700

To (gradient)

to-stone-700

Placeholder

placeholder-stone-700

Caret

caret-stone-700

Accent

accent-stone-700

Decoration

decoration-stone-700

Shadow Color

shadow-stone-700

Tailwind v3 Config (extend custom color)

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

CSS Equivalent

/* Hex */
background-color: #44403C;

/* RGB */
background-color: rgb(68, 64, 60);

/* HSL */
background-color: hsl(30, 6%, 25%);

/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.374 0.009 68);

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

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

OKLCH — Modern Color Space

Lightness (L)

0.374

37% perceived brightness

Chroma (C)

0.009

Color intensity / saturation

Hue (H)

68°

Angle on perceptual hue wheel

oklch(0.374 0.009 68)

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

Dark accent & pressed state

Shade 700 of the Stone palette

Recommended Uses

  • Pressed/active button states
  • Text links on white
  • Dark-mode primary buttons
  • Table headers
  • Strong UI accents

Avoid

Text on black — contrast is too low for dark mode text.

Preview

On White

Aa Bb Cc

On Black

Aa Bb Cc

As Background

Aa Bb Cc — #44403C

Frequently Asked Questions

What is the hex code for Tailwind Stone 700?
Tailwind Stone 700 has the hex code #44403C. Its RGB value is rgb(68, 64, 60) and its HSL value is hsl(30, 6%, 25%).
What Tailwind utility classes use Stone 700?
Use bg-stone-700 for backgrounds, text-stone-700 for text color, border-stone-700 for borders, and ring-stone-700 for focus rings. In Tailwind v4 the CSS variable var(--color-stone-700) is available natively.
Is Tailwind Stone 700 WCAG accessible?
Tailwind Stone 700 achieves a 10.27:1 contrast ratio on white (AAA) and 2.04:1 on black (Fail). Its overall accessibility score is 60/100 (Good).
What is the OKLCH value for Tailwind Stone 700?
Tailwind Stone 700 in OKLCH is oklch(0.374 0.009 68) — lightness 0.374, chroma 0.009, hue 68°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
What is Tailwind Stone 700 used for?
At shade 700, Tailwind Stone 700 is best described as "Dark accent & pressed state". Recommended uses: Pressed/active button states, Text links on white, Dark-mode primary buttons.