Web Safe Color
Copy-ready color values
HEX
#336699RGB
rgb(51, 102, 153)HSL
hsl(210, 50%, 40%)HSV
hsv(210, 67%, 60%)CMYK approx.
cmyk(67, 33, 0, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #336699 | |
| RGB | rgb(51, 102, 153) | |
| HSL | hsl(210, 50%, 40%) | |
| HSV | hsv(210, 67%, 60%) | |
| CMYK approx. | cmyk(67, 33, 0, 40) | |
| CSS keyword | 336699 |
Contrast and classification
DarkLightness6.00:1Contrast with white3.50:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#4775A3
White 30%#7094B8
White 70%#C2D1E0
White 90%#EBF0F5
Black 10%#2E5C8A
Black 30%#24476B
Black 70%#0F1F2E
Black 90%#050A0F
Harmony palettes
Complementary
#CC9966#D8B18BAnalogous
#39668D#336C93Triadic
#669933#993366Split complementary
#D5AB82#A77D54Using 336699
336699 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-336699: #336699;
}
.button-primary {
background: var(--color-336699);
color: #ffffff;
}
$336699: #336699;
// Tailwind arbitrary value
class="bg-[#336699] text-white"