Web Safe Color
Copy-ready color values
HEX
#33CCCCRGB
rgb(51, 204, 204)HSL
hsl(180, 60%, 50%)HSV
hsv(180, 75%, 80%)CMYK approx.
cmyk(75, 0, 0, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #33CCCC | |
| RGB | rgb(51, 204, 204) | |
| HSL | hsl(180, 60%, 50%) | |
| HSV | hsv(180, 75%, 80%) | |
| CMYK approx. | cmyk(75, 0, 0, 20) | |
| CSS keyword | 33cccc |
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#D86464Analogous
#45CCBA#33CCCCTriadic
#CCCC33#CC33CCSplit complementary
#D55858#A72A2AUsing 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"