HSL(14, 100%, 60%)
Red — Red color
Adjust Color
Color Information
Color Name
Red
Color Family
Red
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(14,100%,60%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(14, 100%, 60%) | color: hsl(14, 100%, 60%) | |
| HEX | #FF6333 | color: #FF6333 | |
| RGB | rgb(255, 99, 51) | color: rgb(255, 99, 51) | |
| CMYK | cmyk(0%, 61%, 80%, 0%) | — | |
| HSV | hsv(14, 80%, 100%) | — | |
| HWB | hwb(14 20% 0%) | color: hwb(14 20% 0%) | |
| OKLCH | oklch(0.6942 0.1998 37.04) | color: oklch(0.6942 0.1998 37.04) | |
| Lab | lab(62.02 57.12 56.09) | color: lab(62.02 57.12 56.09) | |
| LCH | lch(62.02 80.05 44.48) | color: lch(62.02 80.05 44.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)
#BBBA3F — rgb(187, 186, 63)
Deuteranopia (Green-blind)
#C5D041 — rgb(197, 208, 65)
Tritanopia (Blue-blind)
#F7484A — rgb(247, 72, 74)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(14, 100%, 60%);
text
color: hsl(14, 100%, 60%);
border
border: 2px solid hsl(14, 100%, 60%);
gradient light
background: linear-gradient(to right, hsl(14, 100%, 80%), hsl(14, 100%, 60%));
gradient dark
background: linear-gradient(to right, hsl(14, 100%, 60%), hsl(14, 100%, 40%))
hex
background-color: #FF6333;
tailwind
bg-[hsl(14,100%,60%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(14, 100%, 60%, 0.4);
css variable
--color-primary: hsl(14, 100%, 60%);
Related Colors
Use Cases for Red
Frequently Asked Questions
What are all the color codes for HSL(14, 100%, 60%)?
HEX: #FF6333 | RGB: rgb(255, 99, 51) | CMYK: 0%, 61%, 80%, 0% | HSV: 14°, 80%, 100%. Copy any format from the conversion table above.
What colors go well with #FF6333?
The complementary color is HSL(194, 100%, 60%). For a triadic harmony, use hues 14°, 134°, and 254°. For analogous combinations, try hues 344° and 44°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(14, 100%, 60%) in CSS?
As HSL: color: hsl(14, 100%, 60%); — As HEX: color: #FF6333; — As RGB: color: rgb(255, 99, 51); — Tailwind CSS: bg-[hsl(14,100%,60%)] — CSS variable: --color-primary: hsl(14, 100%, 60%);