HSL(10, 60%, 60%)
Red — Red color
Adjust Color
Color Information
Color Name
Red
Color Family
Red
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(10,60%,60%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(10, 60%, 60%) | color: hsl(10, 60%, 60%) | |
| HEX | #D6705C | color: #D6705C | |
| RGB | rgb(214, 112, 92) | color: rgb(214, 112, 92) | |
| CMYK | cmyk(0%, 48%, 57%, 16%) | — | |
| HSV | hsv(10, 57%, 84%) | — | |
| HWB | hwb(10 36% 16%) | color: hwb(10 36% 16%) | |
| OKLCH | oklch(0.6581 0.1323 32.35) | color: oklch(0.6581 0.1323 32.35) | |
| Lab | lab(58.66 38.14 29.24) | color: lab(58.66 38.14 29.24) | |
| LCH | lch(58.66 48.06 37.48) | color: lch(58.66 48.06 37.48) |
Color Theory
Accessibility (WCAG)
White text on color
Black text on color
Colored text
Contrast Ratios
AA Normal (4.5:1)
AA Large (3:1)
AAA Normal (7:1)
Best text on this color: black
Color Blindness Simulation
Protanopia (Red-blind)
#AAA961 — rgb(170, 169, 97)
Deuteranopia (Green-blind)
#B0B762 — rgb(176, 183, 98)
Tritanopia (Blue-blind)
#D16566 — rgb(209, 101, 102)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(10, 60%, 60%);
text
color: hsl(10, 60%, 60%);
border
border: 2px solid hsl(10, 60%, 60%);
gradient light
background: linear-gradient(to right, hsl(10, 60%, 80%), hsl(10, 60%, 60%));
gradient dark
background: linear-gradient(to right, hsl(10, 60%, 60%), hsl(10, 60%, 40%))
hex
background-color: #D6705C;
tailwind
bg-[hsl(10,60%,60%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(10, 60%, 60%, 0.4);
css variable
--color-primary: hsl(10, 60%, 60%);
Related Colors
Use Cases for Red
Frequently Asked Questions
What are all the color codes for HSL(10, 60%, 60%)?
HEX: #D6705C | RGB: rgb(214, 112, 92) | CMYK: 0%, 48%, 57%, 16% | HSV: 10°, 57%, 84%. Copy any format from the conversion table above.
What colors go well with #D6705C?
The complementary color is HSL(190, 60%, 60%). For a triadic harmony, use hues 10°, 130°, and 250°. For analogous combinations, try hues 340° and 40°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(10, 60%, 60%) in CSS?
As HSL: color: hsl(10, 60%, 60%); — As HEX: color: #D6705C; — As RGB: color: rgb(214, 112, 92); — Tailwind CSS: bg-[hsl(10,60%,60%)] — CSS variable: --color-primary: hsl(10, 60%, 60%);