Web Safe Color

Copy-ready color values

HEX#6699CC
RGBrgb(102, 153, 204)
HSLhsl(210, 50%, 60%)
HSVhsv(210, 50%, 80%)
CMYK approx.cmyk(50, 25, 0, 20)

Color value table

FormatValueCopy
HEX#6699CC
RGBrgb(102, 153, 204)
HSLhsl(210, 50%, 60%)
HSVhsv(210, 50%, 80%)
CMYK approx.cmyk(50, 25, 0, 20)
CSS keyword6699cc

Contrast and classification

LightLightness3.00:1Contrast with white6.99:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#75A3D1

White 30%
#94B8DB

White 70%
#D1E0F0

White 90%
#F0F5FA

Black 10%
#5C8AB8

Black 30%
#476B8F

Black 70%
#1F2E3D

Black 90%
#0A0F14

Harmony palettes

Complementary

#996633
#B18B64

Analogous

#6C99C0
#669FC6

Triadic

#99CC66
#CC6699

Split complementary

#AB8258
#7D542A

Using 6699cc

6699cc 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-6699cc: #6699cc;
}

.button-primary {
  background: var(--color-6699cc);
  color: #000000;
}

$6699cc: #6699cc;

// Tailwind arbitrary value
class="bg-[#6699cc] text-white"