Web Safe Color

Copy-ready color values

HEX#66CCFF
RGBrgb(102, 204, 255)
HSLhsl(200, 100%, 70%)
HSVhsv(200, 60%, 100%)
CMYK approx.cmyk(60, 20, 0, 0)

Color value table

FormatValueCopy
HEX#66CCFF
RGBrgb(102, 204, 255)
HSLhsl(200, 100%, 70%)
HSVhsv(200, 60%, 100%)
CMYK approx.cmyk(60, 20, 0, 0)
CSS keyword66ccff

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
#B1643D

Analogous

#72CCED
#66D2F9

Triadic

#CCFF66
#FF66CC

Split complementary

#AB582E
#7D2A00

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