Web Safe Color
Copy-ready color values
HEX
#00CCFFRGB
rgb(0, 204, 255)HSL
hsl(192, 100%, 50%)HSV
hsv(192, 100%, 100%)CMYK approx.
cmyk(100, 20, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #00CCFF | |
| RGB | rgb(0, 204, 255) | |
| HSL | hsl(192, 100%, 50%) | |
| HSV | hsv(192, 100%, 100%) | |
| CMYK approx. | cmyk(100, 20, 0, 0) | |
| CSS keyword | 00ccff |
Contrast and classification
DarkLightness1.90:1Contrast with white11.08:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#1AD1FF
White 30%#4DDBFF
White 70%#B3F0FF
White 90%#E6FAFF
Black 10%#00B8E6
Black 30%#008FB3
Black 70%#003D4D
Black 90%#00141A
Harmony palettes
Complementary
#FF3300#FF643DAnalogous
#18CCE0#00D2F9Triadic
#CCFF00#FF00CCSplit complementary
#FF582E#D12A00Using 00ccff
00ccff 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-00ccff: #00ccff;
}
.button-primary {
background: var(--color-00ccff);
color: #000000;
}
$00ccff: #00ccff;
// Tailwind arbitrary value
class="bg-[#00ccff] text-white"