Web Safe Color

Copy-ready color values

HEX#00CCFF
RGBrgb(0, 204, 255)
HSLhsl(192, 100%, 50%)
HSVhsv(192, 100%, 100%)
CMYK approx.cmyk(100, 20, 0, 0)

Color value table

FormatValueCopy
HEX#00CCFF
RGBrgb(0, 204, 255)
HSLhsl(192, 100%, 50%)
HSVhsv(192, 100%, 100%)
CMYK approx.cmyk(100, 20, 0, 0)
CSS keyword00ccff

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
#FF643D

Analogous

#18CCE0
#00D2F9

Triadic

#CCFF00
#FF00CC

Split complementary

#FF582E
#D12A00

Using 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"