Web Safe Color
Copy-ready color values
HEX
#6699CCRGB
rgb(102, 153, 204)HSL
hsl(210, 50%, 60%)HSV
hsv(210, 50%, 80%)CMYK approx.
cmyk(50, 25, 0, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #6699CC | |
| RGB | rgb(102, 153, 204) | |
| HSL | hsl(210, 50%, 60%) | |
| HSV | hsv(210, 50%, 80%) | |
| CMYK approx. | cmyk(50, 25, 0, 20) | |
| CSS keyword | 6699cc |
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#B18B64Analogous
#6C99C0#669FC6Triadic
#99CC66#CC6699Split complementary
#AB8258#7D542AUsing 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"