Web Safe Color

Copy-ready color values

HEX#003399
RGBrgb(0, 51, 153)
HSLhsl(220, 100%, 30%)
HSVhsv(220, 100%, 60%)
CMYK approx.cmyk(100, 67, 0, 40)

Color value table

FormatValueCopy
HEX#003399
RGBrgb(0, 51, 153)
HSLhsl(220, 100%, 30%)
HSVhsv(220, 100%, 60%)
CMYK approx.cmyk(100, 67, 0, 40)
CSS keyword003399

Contrast and classification

DarkLightness10.86:1Contrast with white1.93:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#1A47A3

White 30%
#4D70B8

White 70%
#B3C2E0

White 90%
#E6EBF5

Black 10%
#002E8A

Black 30%
#00246B

Black 70%
#000F2E

Black 90%
#00050F

Harmony palettes

Complementary

#FFCC66
#FFD88B

Analogous

#063387
#003F8D

Triadic

#339900
#990033

Split complementary

#FFD582
#D1A754

Using 003399

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

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

$003399: #003399;

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