Web Safe Color
Copy-ready color values
HEX
#99CCFFRGB
rgb(153, 204, 255)HSL
hsl(210, 100%, 80%)HSV
hsv(210, 40%, 100%)CMYK approx.
cmyk(40, 20, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #99CCFF | |
| RGB | rgb(153, 204, 255) | |
| HSL | hsl(210, 100%, 80%) | |
| HSV | hsv(210, 40%, 100%) | |
| CMYK approx. | cmyk(40, 20, 0, 0) | |
| CSS keyword | 99ccff |
Contrast and classification
LightLightness1.69:1Contrast with white12.44:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#A3D1FF
White 30%#B8DBFF
White 70%#E0F0FF
White 90%#F5FAFF
Black 10%#8AB8E6
Black 30%#6B8FB3
Black 70%#2E3D4D
Black 90%#0F141A
Harmony palettes
Complementary
#663300#8B643DAnalogous
#9FCCF3#99D2F9Triadic
#CCFF99#FF99CCSplit complementary
#82582E#542A00Using 99ccff
99ccff 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-99ccff: #99ccff;
}
.button-primary {
background: var(--color-99ccff);
color: #000000;
}
$99ccff: #99ccff;
// Tailwind arbitrary value
class="bg-[#99ccff] text-white"