Color Values
- HEX
- #FDA4AF
- RGB
- rgb(253, 164, 175)
- HSL
- hsl(353, 96%, 82%)
- OKLCH
- oklch(0.810 0.106 12)
- CMYK
- cmyk(0%, 35%, 31%, 1%)
- CSS Variable
- var(--color-rose-300)
- Tailwind Class
- bg-rose-300
Accessibility Score
Good
Based on WCAG 2.1 contrast ratios against white and black backgrounds.
On White
1.89:1
On Black
11.11:1
Tailwind Usage — All Utilities
Background
bg-rose-300Text
text-rose-300Border
border-rose-300Ring
ring-rose-300Outline
outline-rose-300Fill
fill-rose-300Stroke
stroke-rose-300From (gradient)
from-rose-300Via (gradient)
via-rose-300To (gradient)
to-rose-300Placeholder
placeholder-rose-300Caret
caret-rose-300Accent
accent-rose-300Decoration
decoration-rose-300Shadow Color
shadow-rose-300Tailwind v3 Config (extend custom color)
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'rose-300': '#fda4af',
},
},
},
};CSS Equivalent
/* Hex */
background-color: #FDA4AF;
/* RGB */
background-color: rgb(253, 164, 175);
/* HSL */
background-color: hsl(353, 96%, 82%);
/* OKLCH (CSS Color Level 4) */
background-color: oklch(0.810 0.106 12);
/* CSS Custom Property (Tailwind v4) */
background-color: var(--color-rose-300);
/* Gradient example */
background: linear-gradient(135deg, #fff1f2 0%, #fb7185 100%);OKLCH — Modern Color Space
Lightness (L)
0.810
81% perceived brightness
Chroma (C)
0.106
Color intensity / saturation
Hue (H)
12°
Angle on perceptual hue wheel
oklch(0.810 0.106 12)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 Rose 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 — #FDA4AF
Similar Tailwind Colors
Perceptually close shades from other Tailwind color families.
Nearest Named Color
Tailwind Rose 300
Nearest Tailwind equivalent — #FDA4AF
Frequently Asked Questions
- What is the hex code for Tailwind Rose 300?
- Tailwind Rose 300 has the hex code #FDA4AF. Its RGB value is rgb(253, 164, 175) and its HSL value is hsl(353, 96%, 82%).
- What Tailwind utility classes use Rose 300?
- Use bg-rose-300 for backgrounds, text-rose-300 for text color, border-rose-300 for borders, and ring-rose-300 for focus rings. In Tailwind v4 the CSS variable var(--color-rose-300) is available natively.
- Is Tailwind Rose 300 WCAG accessible?
- Tailwind Rose 300 achieves a 1.89:1 contrast ratio on white (Fail) and 11.11:1 on black (AAA). Its overall accessibility score is 60/100 (Good).
- What is the OKLCH value for Tailwind Rose 300?
- Tailwind Rose 300 in OKLCH is oklch(0.810 0.106 12) — lightness 0.810, chroma 0.106, hue 12°. OKLCH is a perceptually uniform space supported natively in modern CSS via the `color()` function.
- What is Tailwind Rose 300 used for?
- At shade 300, Tailwind Rose 300 is best described as "Light mid-tone accent". Recommended uses: Secondary button outlines, Icon strokes on dark backgrounds, Progress bar fills.