Web Safe Color
Copy-ready color values
HEX
#6699FFRGB
rgb(102, 153, 255)HSL
hsl(220, 100%, 70%)HSV
hsv(220, 60%, 100%)CMYK approx.
cmyk(60, 40, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #6699FF | |
| RGB | rgb(102, 153, 255) | |
| HSL | hsl(220, 100%, 70%) | |
| HSV | hsv(220, 60%, 100%) | |
| CMYK approx. | cmyk(60, 40, 0, 0) | |
| CSS keyword | 6699ff |
Contrast and classification
LightLightness2.78:1Contrast with white7.57:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#75A3FF
White 30%#94B8FF
White 70%#D1E0FF
White 90%#F0F5FF
Black 10%#5C8AE6
Black 30%#476BB3
Black 70%#1F2E4D
Black 90%#0A0F1A
Harmony palettes
Complementary
#996600#B18B3DAnalogous
#6C99ED#66A5F3Triadic
#99FF66#FF6699Split complementary
#AB822E#7D5400Using 6699ff
6699ff 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-6699ff: #6699ff;
}
.button-primary {
background: var(--color-6699ff);
color: #000000;
}
$6699ff: #6699ff;
// Tailwind arbitrary value
class="bg-[#6699ff] text-white"