Web Safe Color

Copy-ready color values

HEX#9999CC
RGBrgb(153, 153, 204)
HSLhsl(240, 33%, 70%)
HSVhsv(240, 25%, 80%)
CMYK approx.cmyk(25, 25, 0, 20)

Color value table

FormatValueCopy
HEX#9999CC
RGBrgb(153, 153, 204)
HSLhsl(240, 33%, 70%)
HSVhsv(240, 25%, 80%)
CMYK approx.cmyk(25, 25, 0, 20)
CSS keyword9999cc

Contrast and classification

LightLightness2.70:1Contrast with white7.78:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#A3A3D1

White 30%
#B8B8DB

White 70%
#E0E0F0

White 90%
#F5F5FA

Black 10%
#8A8AB8

Black 30%
#6B6B8F

Black 70%
#2E2E3D

Black 90%
#0F0F14

Harmony palettes

Complementary

#666633
#8B8B64

Analogous

#9999C6
#999FC6

Triadic

#99CC99
#CC9999

Split complementary

#828258
#54542A

Using 9999cc

9999cc 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-9999cc: #9999cc;
}

.button-primary {
  background: var(--color-9999cc);
  color: #000000;
}

$9999cc: #9999cc;

// Tailwind arbitrary value
class="bg-[#9999cc] text-white"