Web Safe Color
Copy-ready color values
HEX
#0099CCRGB
rgb(0, 153, 204)HSL
hsl(195, 100%, 40%)HSV
hsv(195, 100%, 80%)CMYK approx.
cmyk(100, 25, 0, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #0099CC | |
| RGB | rgb(0, 153, 204) | |
| HSL | hsl(195, 100%, 40%) | |
| HSV | hsv(195, 100%, 80%) | |
| CMYK approx. | cmyk(100, 25, 0, 20) | |
| CSS keyword | 0099cc |
Contrast and classification
DarkLightness3.27:1Contrast with white6.43:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#1AA3D1
White 30%#4DB8DB
White 70%#B3E0F0
White 90%#E6F5FA
Black 10%#008AB8
Black 30%#006B8F
Black 70%#002E3D
Black 90%#000F14
Harmony palettes
Complementary
#FF6633#FF8B64Analogous
#1299B4#009FC6Triadic
#99CC00#CC0099Split complementary
#FF8258#D1542AUsing 0099cc
0099cc 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-0099cc: #0099cc;
}
.button-primary {
background: var(--color-0099cc);
color: #000000;
}
$0099cc: #0099cc;
// Tailwind arbitrary value
class="bg-[#0099cc] text-white"