Web Safe Color
Copy-ready color values
HEX
#003366RGB
rgb(0, 51, 102)HSL
hsl(210, 100%, 20%)HSV
hsv(210, 100%, 40%)CMYK approx.
cmyk(100, 50, 0, 60)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #003366 | |
| RGB | rgb(0, 51, 102) | |
| HSL | hsl(210, 100%, 20%) | |
| HSV | hsv(210, 100%, 40%) | |
| CMYK approx. | cmyk(100, 50, 0, 60) | |
| CSS keyword | 003366 |
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#FFD8B1Analogous
#06335A#003960Triadic
#336600#660033Split complementary
#FFD5AB#D1A77DUsing 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"