Web Safe Color

Copy-ready color values

HEX#3366FF
RGBrgb(51, 102, 255)
HSLhsl(225, 100%, 60%)
HSVhsv(225, 80%, 100%)
CMYK approx.cmyk(80, 60, 0, 0)

Color value table

FormatValueCopy
HEX#3366FF
RGBrgb(51, 102, 255)
HSLhsl(225, 100%, 60%)
HSVhsv(225, 80%, 100%)
CMYK approx.cmyk(80, 60, 0, 0)
CSS keyword3366ff

Contrast and classification

LightLightness4.68:1Contrast with white4.49:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#4775FF

White 30%
#7094FF

White 70%
#C2D1FF

White 90%
#EBF0FF

Black 10%
#2E5CE6

Black 30%
#2447B3

Black 70%
#0F1F4D

Black 90%
#050A1A

Harmony palettes

Complementary

#CC9900
#D8B13D

Analogous

#3966E7
#3378ED

Triadic

#66FF33
#FF3366

Split complementary

#D5AB2E
#A77D00

Using 3366ff

3366ff 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-3366ff: #3366ff;
}

.button-primary {
  background: var(--color-3366ff);
  color: #ffffff;
}

$3366ff: #3366ff;

// Tailwind arbitrary value
class="bg-[#3366ff] text-white"