CSS Named Color
Copy-ready color values
HEX
#FF8C00RGB
rgb(255, 140, 0)HSL
hsl(33, 100%, 50%)HSV
hsv(33, 100%, 100%)CMYK approx.
cmyk(0, 45, 100, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF8C00 | |
| RGB | rgb(255, 140, 0) | |
| HSL | hsl(33, 100%, 50%) | |
| HSV | hsv(33, 100%, 100%) | |
| CMYK approx. | cmyk(0, 45, 100, 0) | |
| CSS keyword | darkorange |
Contrast and classification
DarkLightness2.33:1Contrast with white9.00:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FF981A
White 30%#FFAF4D
White 70%#FFDDB3
White 90%#FFF4E6
Black 10%#E67E00
Black 30%#B36200
Black 70%#4D2A00
Black 90%#1A0E00
Harmony palettes
Complementary
#0073FF#3D95FFAnalogous
#F18C1F#FF7B11Triadic
#8C00FF#00FF8CSplit complementary
#2E8CFF#005ED1Using Darkorange
Darkorange 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-darkorange: #ff8c00;
}
.button-primary {
background: var(--color-darkorange);
color: #000000;
}
$darkorange: #ff8c00;
// Tailwind arbitrary value
class="bg-[#ff8c00] text-white"