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