Web Safe Color
Copy-ready color values
HEX
#FF9966RGB
rgb(255, 153, 102)HSL
hsl(20, 100%, 70%)HSV
hsv(20, 60%, 100%)CMYK approx.
cmyk(0, 40, 60, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF9966 | |
| RGB | rgb(255, 153, 102) | |
| HSL | hsl(20, 100%, 70%) | |
| HSV | hsv(20, 60%, 100%) | |
| CMYK approx. | cmyk(0, 40, 60, 0) | |
| CSS keyword | ff9966 |
Contrast and classification
LightLightness2.10:1Contrast with white10.00:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFA375
White 30%#FFB894
White 70%#FFE0D1
White 90%#FFF5F0
Black 10%#E68A5C
Black 30%#B36B47
Black 70%#4D2E1F
Black 90%#1A0F0A
Harmony palettes
Complementary
#006699#3D8BB1Analogous
#F39978#FF936CTriadic
#9966FF#66FF99Split complementary
#2E82AB#00547DUsing Ff9966
Ff9966 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-ff9966: #ff9966;
}
.button-primary {
background: var(--color-ff9966);
color: #000000;
}
$ff9966: #ff9966;
// Tailwind arbitrary value
class="bg-[#ff9966] text-white"