Web Safe Color

Copy-ready color values

HEX#006699
RGBrgb(0, 102, 153)
HSLhsl(200, 100%, 30%)
HSVhsv(200, 100%, 60%)
CMYK approx.cmyk(100, 33, 0, 40)

Color value table

FormatValueCopy
HEX#006699
RGBrgb(0, 102, 153)
HSLhsl(200, 100%, 30%)
HSVhsv(200, 100%, 60%)
CMYK approx.cmyk(100, 33, 0, 40)
CSS keyword006699

Contrast and classification

DarkLightness6.25:1Contrast with white3.36:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#1A75A3

White 30%
#4D94B8

White 70%
#B3D1E0

White 90%
#E6F0F5

Black 10%
#005C8A

Black 30%
#00476B

Black 70%
#001F2E

Black 90%
#000A0F

Harmony palettes

Complementary

#FF9966
#FFB18B

Analogous

#0C6687
#006C93

Triadic

#669900
#990066

Split complementary

#FFAB82
#D17D54

Using 006699

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

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

$006699: #006699;

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