Web Safe Color

Copy-ready color values

HEX#3399FF
RGBrgb(51, 153, 255)
HSLhsl(210, 100%, 60%)
HSVhsv(210, 80%, 100%)
CMYK approx.cmyk(80, 40, 0, 0)

Color value table

FormatValueCopy
HEX#3399FF
RGBrgb(51, 153, 255)
HSLhsl(210, 100%, 60%)
HSVhsv(210, 80%, 100%)
CMYK approx.cmyk(80, 40, 0, 0)
CSS keyword3399ff

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
#D88B3D

Analogous

#3F99E7
#33A5F3

Triadic

#99FF33
#FF3399

Split complementary

#D5822E
#A75400

Using 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"