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