CSS Named Color
Copy-ready color values
HEX
#FF4500RGB
rgb(255, 69, 0)HSL
hsl(16, 100%, 50%)HSV
hsv(16, 100%, 100%)CMYK approx.
cmyk(0, 73, 100, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF4500 | |
| RGB | rgb(255, 69, 0) | |
| HSL | hsl(16, 100%, 50%) | |
| HSV | hsv(16, 100%, 100%) | |
| CMYK approx. | cmyk(0, 73, 100, 0) | |
| CSS keyword | orangered |
Contrast and classification
DarkLightness3.44:1Contrast with white6.10:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FF581A
White 30%#FF7D4D
White 70%#FFC7B3
White 90%#FFECE6
Black 10%#E63E00
Black 30%#B33000
Black 70%#4D1500
Black 90%#1A0700
Harmony palettes
Complementary
#00BAFF#3DCBFFAnalogous
#E9451F#FF3D08Triadic
#4500FF#00FF45Split complementary
#2EC6FF#0099D1Using Orangered
Orangered works best when it is chosen with contrast, surrounding colors, and interface state in mind. Use the HEX value for static CSS, RGB when you need channel-level control, and HSL when adjusting lightness or saturation for hover states. The CMYK value is an approximate screen-to-print conversion, so print workflows should still rely on calibrated design software or a printer profile.
CSS, SCSS, and Tailwind examples
:root {
--color-orangered: #ff4500;
}
.button-primary {
background: var(--color-orangered);
color: #000000;
}
$orangered: #ff4500;
// Tailwind arbitrary value
class="bg-[#ff4500] text-white"