Web Safe Color

Copy-ready color values

HEX#33CCCC
RGBrgb(51, 204, 204)
HSLhsl(180, 60%, 50%)
HSVhsv(180, 75%, 80%)
CMYK approx.cmyk(75, 0, 0, 20)

Color value table

FormatValueCopy
HEX#33CCCC
RGBrgb(51, 204, 204)
HSLhsl(180, 60%, 50%)
HSVhsv(180, 75%, 80%)
CMYK approx.cmyk(75, 0, 0, 20)
CSS keyword33cccc

Contrast and classification

DarkLightness1.97:1Contrast with white10.65:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#47D1D1

White 30%
#70DBDB

White 70%
#C2F0F0

White 90%
#EBFAFA

Black 10%
#2EB8B8

Black 30%
#248F8F

Black 70%
#0F3D3D

Black 90%
#051414

Harmony palettes

Complementary

#CC3333
#D86464

Analogous

#45CCBA
#33CCCC

Triadic

#CCCC33
#CC33CC

Split complementary

#D55858
#A72A2A

Using 33cccc

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

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

$33cccc: #33cccc;

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