Web Safe Color
Copy-ready color values
HEX
#003399RGB
rgb(0, 51, 153)HSL
hsl(220, 100%, 30%)HSV
hsv(220, 100%, 60%)CMYK approx.
cmyk(100, 67, 0, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #003399 | |
| RGB | rgb(0, 51, 153) | |
| HSL | hsl(220, 100%, 30%) | |
| HSV | hsv(220, 100%, 60%) | |
| CMYK approx. | cmyk(100, 67, 0, 40) | |
| CSS keyword | 003399 |
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#FFD88BAnalogous
#063387#003F8DTriadic
#339900#990033Split complementary
#FFD582#D1A754Using 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"