Web Safe Color

Copy-ready color values

HEX#6666FF
RGBrgb(102, 102, 255)
HSLhsl(240, 100%, 70%)
HSVhsv(240, 60%, 100%)
CMYK approx.cmyk(60, 60, 0, 0)

Color value table

FormatValueCopy
HEX#6666FF
RGBrgb(102, 102, 255)
HSLhsl(240, 100%, 70%)
HSVhsv(240, 60%, 100%)
CMYK approx.cmyk(60, 60, 0, 0)
CSS keyword6666ff

Contrast and classification

LightLightness4.28:1Contrast with white4.91:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#7575FF

White 30%
#9494FF

White 70%
#D1D1FF

White 90%
#F0F0FF

Black 10%
#5C5CE6

Black 30%
#4747B3

Black 70%
#1F1F4D

Black 90%
#0A0A1A

Harmony palettes

Complementary

#999900
#B1B13D

Analogous

#6666ED
#6678ED

Triadic

#66FF66
#FF6666

Split complementary

#ABAB2E
#7D7D00

Using 6666ff

6666ff 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-6666ff: #6666ff;
}

.button-primary {
  background: var(--color-6666ff);
  color: #000000;
}

$6666ff: #6666ff;

// Tailwind arbitrary value
class="bg-[#6666ff] text-white"