CSS Named Color / Web Safe Color
Copy-ready color values
HEX
#FF00FFRGB
rgb(255, 0, 255)HSL
hsl(300, 100%, 50%)HSV
hsv(300, 100%, 100%)CMYK approx.
cmyk(0, 100, 0, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF00FF | |
| RGB | rgb(255, 0, 255) | |
| HSL | hsl(300, 100%, 50%) | |
| HSV | hsv(300, 100%, 100%) | |
| CMYK approx. | cmyk(0, 100, 0, 0) | |
| CSS keyword | fuchsia |
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#3DFF3DAnalogous
#E000FF#FF1FE0Triadic
#00FFFF#FFFF00Split complementary
#2EFF2E#00D100Using 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"