Web Safe Color
Copy-ready color values
HEX
#CCCCFFRGB
rgb(204, 204, 255)HSL
hsl(240, 100%, 90%)HSV
hsv(240, 20%, 100%)CMYK approx.
cmyk(20, 20, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CCCCFF | |
| RGB | rgb(204, 204, 255) | |
| HSL | hsl(240, 100%, 90%) | |
| HSV | hsv(240, 20%, 100%) | |
| CMYK approx. | cmyk(20, 20, 0, 0) | |
| CSS keyword | ccccff |
Contrast and classification
LightLightness1.54:1Contrast with white13.65:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#D1D1FF
White 30%#DBDBFF
White 70%#F0F0FF
White 90%#FAFAFF
Black 10%#B8B8E6
Black 30%#8F8FB3
Black 70%#3D3D4D
Black 90%#14141A
Harmony palettes
Complementary
#333300#64643DAnalogous
#CCCCF9#CCD2F9Triadic
#CCFFCC#FFCCCCSplit complementary
#58582E#2A2A00Using Ccccff
Ccccff 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-ccccff: #ccccff;
}
.button-primary {
background: var(--color-ccccff);
color: #000000;
}
$ccccff: #ccccff;
// Tailwind arbitrary value
class="bg-[#ccccff] text-white"