Web Safe Color
Copy-ready color values
HEX
#3399FFRGB
rgb(51, 153, 255)HSL
hsl(210, 100%, 60%)HSV
hsv(210, 80%, 100%)CMYK approx.
cmyk(80, 40, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #3399FF | |
| RGB | rgb(51, 153, 255) | |
| HSL | hsl(210, 100%, 60%) | |
| HSV | hsv(210, 80%, 100%) | |
| CMYK approx. | cmyk(80, 40, 0, 0) | |
| CSS keyword | 3399ff |
Contrast and classification
LightLightness2.94:1Contrast with white7.14:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#47A3FF
White 30%#70B8FF
White 70%#C2E0FF
White 90%#EBF5FF
Black 10%#2E8AE6
Black 30%#246BB3
Black 70%#0F2E4D
Black 90%#050F1A
Harmony palettes
Complementary
#CC6600#D88B3DAnalogous
#3F99E7#33A5F3Triadic
#99FF33#FF3399Split complementary
#D5822E#A75400Using 3399ff
3399ff 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-3399ff: #3399ff;
}
.button-primary {
background: var(--color-3399ff);
color: #000000;
}
$3399ff: #3399ff;
// Tailwind arbitrary value
class="bg-[#3399ff] text-white"