Color Values
- HEX
- #67E8F9
- RGB
- rgb(103, 232, 249)
- HSL
- hsl(187, 92%, 69%)
- OKLCH
- oklch(0.865 0.115 207)
- CMYK
- cmyk(59%, 7%, 0%, 2%)
- CSS Variable
- var(--color-cyan-300)
- Tailwind Class
- bg-cyan-300
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.45:1
On Black
14.49:1
Tailwind Usage — All Utilities
Background
bg-cyan-300Text
text-cyan-300Border
border-cyan-300Ring
ring-cyan-300Outline
outline-cyan-300Fill
fill-cyan-300Stroke
stroke-cyan-300From (gradient)
from-cyan-300Via (gradient)
via-cyan-300To (gradient)
to-cyan-300Placeholder
placeholder-cyan-300Caret
caret-cyan-300Accent
accent-cyan-300Decoration
decoration-cyan-300Shadow Color
shadow-cyan-300Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'cyan-300': '#67e8f9',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #67E8F9;
/* RGB */
background-color: rgb(103, 232, 249);
/* HSL */
background-color: hsl(187, 92%, 69%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.865 0.115 207);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-cyan-300);
/* Gradient example */
background: linear-gradient(135deg, #ecfeff 0%, #22d3ee 100%);OKLCH — Modern Color Space
Lightness (L)
0.865
87% perceived brightness
Chroma (C)
0.115
Color intensity / saturation
Hue (H)
207°
Angle on perceptual hue wheel
oklch(0.865 0.115 207)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 mid-tone accent
Shade 300 of the Cyan palette
Recommended Uses
- ✓Secondary button outlines
- ✓Icon strokes on dark backgrounds
- ✓Progress bar fills
- ✓Selected state highlights
Avoid
Preview
On White
Aa Bb Cc
On Black
Aa Bb Cc
As Background
Aa Bb Cc — #67E8F9
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Cyan 300
Nearest Tailwind equivalent — #67E8F9
Frequently Asked Questions
- What is the hex code for Tailwind Cyan 300?
- Tailwind Cyan 300 has the hex code #67E8F9. Its RGB value is rgb(103, 232, 249) and its HSL value is hsl(187, 92%, 69%).
- What Tailwind utility classes use Cyan 300?
- Use bg-cyan-300 for backgrounds, text-cyan-300 for text color, border-cyan-300 for borders, and ring-cyan-300 for focus rings. In Tailwind v4 the CSS variable var(--color-cyan-300) is available natively.
- Is Tailwind Cyan 300 WCAG accessible?
- Tailwind Cyan 300 achieves a 1.45:1 contrast ratio on white (Fail) and 14.49:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Cyan 300?
- Tailwind Cyan 300 in OKLCH is oklch(0.865 0.115 207) — lightness 0.865, chroma 0.115, hue 207°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Cyan 300 used for?
- At shade 300, Tailwind Cyan 300 is best described as "Light mid-tone accent". Recommended uses: Secondary button outlines, Icon strokes on dark backgrounds, Progress bar fills.