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