HSL(3, 100%, 65%)
Red — Red color
Adjust Color
Color Information
Color Name
Red
Color Family
Red
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(3,100%,65%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(3, 100%, 65%) | color: hsl(3, 100%, 65%) | |
| HEX | #FF554D | color: #FF554D | |
| RGB | rgb(255, 85, 77) | color: rgb(255, 85, 77) | |
| CMYK | cmyk(0%, 67%, 70%, 0%) | — | |
| HSV | hsv(3, 70%, 100%) | — | |
| HWB | hwb(3 30% 0%) | color: hwb(3 30% 0%) | |
| OKLCH | oklch(0.6811 0.2074 26.83) | color: oklch(0.6811 0.2074 26.83) | |
| Lab | lab(60.16 63.82 40.87) | color: lab(60.16 63.82 40.87) | |
| LCH | lch(60.16 75.78 32.64) | color: lch(60.16 75.78 32.64) |
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)
#B5B44F — rgb(181, 180, 79)
Deuteranopia (Green-blind)
#BFCC4F — rgb(191, 204, 79)
Tritanopia (Blue-blind)
#F75051 — rgb(247, 80, 81)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(3, 100%, 65%);
text
color: hsl(3, 100%, 65%);
border
border: 2px solid hsl(3, 100%, 65%);
gradient light
background: linear-gradient(to right, hsl(3, 100%, 85%), hsl(3, 100%, 65%));
gradient dark
background: linear-gradient(to right, hsl(3, 100%, 65%), hsl(3, 100%, 45%))
hex
background-color: #FF554D;
tailwind
bg-[hsl(3,100%,65%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(3, 100%, 65%, 0.4);
css variable
--color-primary: hsl(3, 100%, 65%);
Related Colors
Use Cases for Red
Frequently Asked Questions
What are all the color codes for HSL(3, 100%, 65%)?
HEX: #FF554D | RGB: rgb(255, 85, 77) | CMYK: 0%, 67%, 70%, 0% | HSV: 3°, 70%, 100%. Copy any format from the conversion table above.
What colors go well with #FF554D?
The complementary color is HSL(183, 100%, 65%). For a triadic harmony, use hues 3°, 123°, and 243°. For analogous combinations, try hues 333° and 33°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(3, 100%, 65%) in CSS?
As HSL: color: hsl(3, 100%, 65%); — As HEX: color: #FF554D; — As RGB: color: rgb(255, 85, 77); — Tailwind CSS: bg-[hsl(3,100%,65%)] — CSS variable: --color-primary: hsl(3, 100%, 65%);