Web Safe Color
Copy-ready color values
HEX
#FF6666RGB
rgb(255, 102, 102)HSL
hsl(0, 100%, 70%)HSV
hsv(0, 60%, 100%)CMYK approx.
cmyk(0, 60, 60, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF6666 | |
| RGB | rgb(255, 102, 102) | |
| HSL | hsl(0, 100%, 70%) | |
| HSV | hsv(0, 60%, 100%) | |
| CMYK approx. | cmyk(0, 60, 60, 0) | |
| CSS keyword | ff6666 |
Contrast and classification
LightLightness2.86:1Contrast with white7.34:1Contrast with blackMagenta / PurpleColor family
Shade and tint preview
White 10%#FF7575
White 30%#FF9494
White 70%#FFD1D1
White 90%#FFF0F0
Black 10%#E65C5C
Black 30%#B34747
Black 70%#4D1F1F
Black 90%#1A0A0A
Harmony palettes
Complementary
#009999#3DB1B1Analogous
#ED6678#FF6666Triadic
#6666FF#66FF66Split complementary
#2EABAB#007D7DUsing Ff6666
Ff6666 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-ff6666: #ff6666;
}
.button-primary {
background: var(--color-ff6666);
color: #000000;
}
$ff6666: #ff6666;
// Tailwind arbitrary value
class="bg-[#ff6666] text-white"