Web Safe Color

Copy-ready color values

HEX#33CCFF
RGBrgb(51, 204, 255)
HSLhsl(195, 100%, 60%)
HSVhsv(195, 80%, 100%)
CMYK approx.cmyk(80, 20, 0, 0)

Color value table

FormatValueCopy
HEX#33CCFF
RGBrgb(51, 204, 255)
HSLhsl(195, 100%, 60%)
HSVhsv(195, 80%, 100%)
CMYK approx.cmyk(80, 20, 0, 0)
CSS keyword33ccff

Contrast and classification

LightLightness1.87:1Contrast with white11.22:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#47D1FF

White 30%
#70DBFF

White 70%
#C2F0FF

White 90%
#EBFAFF

Black 10%
#2EB8E6

Black 30%
#248FB3

Black 70%
#0F3D4D

Black 90%
#05141A

Harmony palettes

Complementary

#CC3300
#D8643D

Analogous

#45CCE7
#33D2F9

Triadic

#CCFF33
#FF33CC

Split complementary

#D5582E
#A72A00

Using 33ccff

33ccff 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-33ccff: #33ccff;
}

.button-primary {
  background: var(--color-33ccff);
  color: #000000;
}

$33ccff: #33ccff;

// Tailwind arbitrary value
class="bg-[#33ccff] text-white"