Skip to main content

bg-cyan-50

Tailwind Cyan 50

#ECFEFF·Cyan family·Shade 50

Color Values

HEX
#ECFEFF
RGB
rgb(236, 254, 255)
HSL
hsl(183, 100%, 96%)
OKLCH
oklch(0.984 0.019 201)
CMYK
cmyk(7%, 0%, 0%, 0%)
CSS Variable
var(--color-cyan-50)
Tailwind Class
bg-cyan-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.19:1

AAA
Test in Contrast Checker →

Tailwind Usage — All Utilities

Background

bg-cyan-50

Text

text-cyan-50

Border

border-cyan-50

Ring

ring-cyan-50

Outline

outline-cyan-50

Fill

fill-cyan-50

Stroke

stroke-cyan-50

From (gradient)

from-cyan-50

Via (gradient)

via-cyan-50

To (gradient)

to-cyan-50

Placeholder

placeholder-cyan-50

Caret

caret-cyan-50

Accent

accent-cyan-50

Decoration

decoration-cyan-50

Shadow Color

shadow-cyan-50

Tailwind v3 Config (extend custom color)

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

CSS Equivalent

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

/* RGB */
background-color: rgb(236, 254, 255);

/* HSL */
background-color: hsl(183, 100%, 96%);

/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.984 0.019 201);

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

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

OKLCH — Modern Color Space

Lightness (L)

0.984

98% perceived brightness

Chroma (C)

0.019

Color intensity / saturation

Hue (H)

201°

Angle on perceptual hue wheel

oklch(0.984 0.019 201)

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 Cyan 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 — #ECFEFF

Frequently Asked Questions

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