Web Safe Color

Copy-ready color values

HEX#0066FF
RGBrgb(0, 102, 255)
HSLhsl(216, 100%, 50%)
HSVhsv(216, 100%, 100%)
CMYK approx.cmyk(100, 60, 0, 0)

Color value table

FormatValueCopy
HEX#0066FF
RGBrgb(0, 102, 255)
HSLhsl(216, 100%, 50%)
HSVhsv(216, 100%, 100%)
CMYK approx.cmyk(100, 60, 0, 0)
CSS keyword0066ff

Contrast and classification

DarkLightness4.83:1Contrast with white4.34:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#1A75FF

White 30%
#4D94FF

White 70%
#B3D1FF

White 90%
#E6F0FF

Black 10%
#005CE6

Black 30%
#0047B3

Black 70%
#001F4D

Black 90%
#000A1A

Harmony palettes

Complementary

#FF9900
#FFB13D

Analogous

#0C66E0
#0078ED

Triadic

#66FF00
#FF0066

Split complementary

#FFAB2E
#D17D00

Using 0066ff

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

.button-primary {
  background: var(--color-0066ff);
  color: #ffffff;
}

$0066ff: #0066ff;

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