CSS Named Color / Web Safe Color

Copy-ready color values

HEX#FF00FF
RGBrgb(255, 0, 255)
HSLhsl(300, 100%, 50%)
HSVhsv(300, 100%, 100%)
CMYK approx.cmyk(0, 100, 0, 0)

Color value table

FormatValueCopy
HEX#FF00FF
RGBrgb(255, 0, 255)
HSLhsl(300, 100%, 50%)
HSVhsv(300, 100%, 100%)
CMYK approx.cmyk(0, 100, 0, 0)
CSS keywordfuchsia

Contrast and classification

DarkLightness3.14:1Contrast with white6.70:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#FF1AFF

White 30%
#FF4DFF

White 70%
#FFB3FF

White 90%
#FFE6FF

Black 10%
#E600E6

Black 30%
#B300B3

Black 70%
#4D004D

Black 90%
#1A001A

Harmony palettes

Complementary

#00FF00
#3DFF3D

Analogous

#E000FF
#FF1FE0

Triadic

#00FFFF
#FFFF00

Split complementary

#2EFF2E
#00D100

Using Fuchsia

Fuchsia 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-fuchsia: #ff00ff;
}

.button-primary {
  background: var(--color-fuchsia);
  color: #000000;
}

$fuchsia: #ff00ff;

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