HSL(20, 50%, 60%)
Orange — Orange color
Adjust Color
Color Information
Color Name
Orange
Color Family
Orange
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(20,50%,60%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(20, 50%, 60%) | color: hsl(20, 50%, 60%) | |
| HEX | #CC8866 | color: #CC8866 | |
| RGB | rgb(204, 136, 102) | color: rgb(204, 136, 102) | |
| CMYK | cmyk(0%, 33%, 50%, 20%) | — | |
| HSV | hsv(20, 50%, 80%) | — | |
| HWB | hwb(20 40% 20%) | color: hwb(20 40% 20%) | |
| OKLCH | oklch(0.6881 0.0963 47.22) | color: oklch(0.6881 0.0963 47.22) | |
| Lab | lab(62.85 22.25 28.83) | color: lab(62.85 22.25 28.83) | |
| LCH | lch(62.85 36.42 52.34) | color: lch(62.85 36.42 52.34) |
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)
#AFAE6E — rgb(175, 174, 110)
Deuteranopia (Green-blind)
#B3B870 — rgb(179, 184, 112)
Tritanopia (Blue-blind)
#C97576 — rgb(201, 117, 118)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(20, 50%, 60%);
text
color: hsl(20, 50%, 60%);
border
border: 2px solid hsl(20, 50%, 60%);
gradient light
background: linear-gradient(to right, hsl(20, 50%, 80%), hsl(20, 50%, 60%));
gradient dark
background: linear-gradient(to right, hsl(20, 50%, 60%), hsl(20, 50%, 40%))
hex
background-color: #CC8866;
tailwind
bg-[hsl(20,50%,60%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(20, 50%, 60%, 0.4);
css variable
--color-primary: hsl(20, 50%, 60%);
Related Colors
Use Cases for Orange
Frequently Asked Questions
What are all the color codes for HSL(20, 50%, 60%)?
HEX: #CC8866 | RGB: rgb(204, 136, 102) | CMYK: 0%, 33%, 50%, 20% | HSV: 20°, 50%, 80%. Copy any format from the conversion table above.
What colors go well with #CC8866?
The complementary color is HSL(200, 50%, 60%). For a triadic harmony, use hues 20°, 140°, and 260°. For analogous combinations, try hues 350° and 50°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(20, 50%, 60%) in CSS?
As HSL: color: hsl(20, 50%, 60%); — As HEX: color: #CC8866; — As RGB: color: rgb(204, 136, 102); — Tailwind CSS: bg-[hsl(20,50%,60%)] — CSS variable: --color-primary: hsl(20, 50%, 60%);