Web Safe Color

Copy-ready color values

HEX#003366
RGBrgb(0, 51, 102)
HSLhsl(210, 100%, 20%)
HSVhsv(210, 100%, 40%)
CMYK approx.cmyk(100, 50, 0, 60)

Color value table

FormatValueCopy
HEX#003366
RGBrgb(0, 51, 102)
HSLhsl(210, 100%, 20%)
HSVhsv(210, 100%, 40%)
CMYK approx.cmyk(100, 50, 0, 60)
CSS keyword003366

Contrast and classification

DarkLightness12.61:1Contrast with white1.67:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#1A4775

White 30%
#4D7094

White 70%
#B3C2D1

White 90%
#E6EBF0

Black 10%
#002E5C

Black 30%
#002447

Black 70%
#000F1F

Black 90%
#00050A

Harmony palettes

Complementary

#FFCC99
#FFD8B1

Analogous

#06335A
#003960

Triadic

#336600
#660033

Split complementary

#FFD5AB
#D1A77D

Using 003366

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

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

$003366: #003366;

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