CSS Named Color
Copy-ready color values
HEX
#FFA500RGB
rgb(255, 165, 0)HSL
hsl(39, 100%, 50%)HSV
hsv(39, 100%, 100%)CMYK approx.
cmyk(0, 35, 100, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFA500 | |
| RGB | rgb(255, 165, 0) | |
| HSL | hsl(39, 100%, 50%) | |
| HSV | hsv(39, 100%, 100%) | |
| CMYK approx. | cmyk(0, 35, 100, 0) | |
| CSS keyword | orange |
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#3D82FFAnalogous
#F4A51F#FF9114Triadic
#A500FF#00FFA5Split complementary
#2E78FF#004AD1Using 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"