Web Safe Color
Copy-ready color values
HEX
#66CCFFRGB
rgb(102, 204, 255)HSL
hsl(200, 100%, 70%)HSV
hsv(200, 60%, 100%)CMYK approx.
cmyk(60, 20, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #66CCFF | |
| RGB | rgb(102, 204, 255) | |
| HSL | hsl(200, 100%, 70%) | |
| HSV | hsv(200, 60%, 100%) | |
| CMYK approx. | cmyk(60, 20, 0, 0) | |
| CSS keyword | 66ccff |
Contrast and classification
LightLightness1.80:1Contrast with white11.65:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#75D1FF
White 30%#94DBFF
White 70%#D1F0FF
White 90%#F0FAFF
Black 10%#5CB8E6
Black 30%#478FB3
Black 70%#1F3D4D
Black 90%#0A141A
Harmony palettes
Complementary
#993300#B1643DAnalogous
#72CCED#66D2F9Triadic
#CCFF66#FF66CCSplit complementary
#AB582E#7D2A00Using 66ccff
66ccff 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-66ccff: #66ccff;
}
.button-primary {
background: var(--color-66ccff);
color: #000000;
}
$66ccff: #66ccff;
// Tailwind arbitrary value
class="bg-[#66ccff] text-white"