CSS Named Color

Copy-ready color values

HEX#FF8C00
RGBrgb(255, 140, 0)
HSLhsl(33, 100%, 50%)
HSVhsv(33, 100%, 100%)
CMYK approx.cmyk(0, 45, 100, 0)

Color value table

FormatValueCopy
HEX#FF8C00
RGBrgb(255, 140, 0)
HSLhsl(33, 100%, 50%)
HSVhsv(33, 100%, 100%)
CMYK approx.cmyk(0, 45, 100, 0)
CSS keyworddarkorange

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
#3D95FF

Analogous

#F18C1F
#FF7B11

Triadic

#8C00FF
#00FF8C

Split complementary

#2E8CFF
#005ED1

Using 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"