CSS Named Color

Copy-ready color values

HEX#FF4500
RGBrgb(255, 69, 0)
HSLhsl(16, 100%, 50%)
HSVhsv(16, 100%, 100%)
CMYK approx.cmyk(0, 73, 100, 0)

Color value table

FormatValueCopy
HEX#FF4500
RGBrgb(255, 69, 0)
HSLhsl(16, 100%, 50%)
HSVhsv(16, 100%, 100%)
CMYK approx.cmyk(0, 73, 100, 0)
CSS keywordorangered

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

Analogous

#E9451F
#FF3D08

Triadic

#4500FF
#00FF45

Split complementary

#2EC6FF
#0099D1

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