CSS Named Color

Copy-ready color values

HEX#FFA500
RGBrgb(255, 165, 0)
HSLhsl(39, 100%, 50%)
HSVhsv(39, 100%, 100%)
CMYK approx.cmyk(0, 35, 100, 0)

Color value table

FormatValueCopy
HEX#FFA500
RGBrgb(255, 165, 0)
HSLhsl(39, 100%, 50%)
HSVhsv(39, 100%, 100%)
CMYK approx.cmyk(0, 35, 100, 0)
CSS keywordorange

Contrast and classification

DarkLightness1.97:1Contrast with white10.63:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFAE1A

White 30%
#FFC04D

White 70%
#FFE4B3

White 90%
#FFF6E6

Black 10%
#E69500

Black 30%
#B37400

Black 70%
#4D3200

Black 90%
#1A1100

Harmony palettes

Complementary

#005AFF
#3D82FF

Analogous

#F4A51F
#FF9114

Triadic

#A500FF
#00FFA5

Split complementary

#2E78FF
#004AD1

Using Orange

Orange 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-orange: #ffa500;
}

.button-primary {
  background: var(--color-orange);
  color: #000000;
}

$orange: #ffa500;

// Tailwind arbitrary value
class="bg-[#ffa500] text-white"