Web Safe Color
Copy-ready color values
HEX
#33CCFFRGB
rgb(51, 204, 255)HSL
hsl(195, 100%, 60%)HSV
hsv(195, 80%, 100%)CMYK approx.
cmyk(80, 20, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #33CCFF | |
| RGB | rgb(51, 204, 255) | |
| HSL | hsl(195, 100%, 60%) | |
| HSV | hsv(195, 80%, 100%) | |
| CMYK approx. | cmyk(80, 20, 0, 0) | |
| CSS keyword | 33ccff |
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#D8643DAnalogous
#45CCE7#33D2F9Triadic
#CCFF33#FF33CCSplit complementary
#D5582E#A72A00Using 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"