Web Safe Color

Copy-ready color values

HEX#3300FF
RGBrgb(51, 0, 255)
HSLhsl(252, 100%, 50%)
HSVhsv(252, 100%, 100%)
CMYK approx.cmyk(80, 100, 0, 0)

Color value table

FormatValueCopy
HEX#3300FF
RGBrgb(51, 0, 255)
HSLhsl(252, 100%, 50%)
HSVhsv(252, 100%, 100%)
CMYK approx.cmyk(80, 100, 0, 0)
CSS keyword3300ff

Contrast and classification

DarkLightness8.12:1Contrast with white2.58:1Contrast with blackPurple / BlueColor family

Shade and tint preview

White 10%
#471AFF

White 30%
#704DFF

White 70%
#C2B3FF

White 90%
#EBE6FF

Black 10%
#2E00E6

Black 30%
#2400B3

Black 70%
#0F004D

Black 90%
#05001A

Harmony palettes

Complementary

#CCFF00
#D8FF3D

Analogous

#2D00E7
#331FE0

Triadic

#00FF33
#FF3300

Split complementary

#D5FF2E
#A7D100

Using 3300ff

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

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

$3300ff: #3300ff;

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