#E323CF Fuchsia

rgb(227, 35, 207)

Color conversions

HEX
#E323CF
RGB
rgb(227, 35, 207)
RGBA
rgba(227, 35, 207, 1)
HSL
hsl(306, 77%, 51%)
HSV / HSB
hsv(306, 85%, 89%)
CMYK
cmyk(0%, 85%, 9%, 11%)

Wide-gamut spaces

XYZ
xyz(43.542, 22.042, 60.981)
LAB
lab(54.07 83.41 -44.04)
LCH
lch(54.07 94.33 332.16)
OKLAB
oklab(64.03% 0.2416 -0.1211)
OKLCH
oklch(64.03% 0.2703 333.38)
Nearest name
Fuchsia

Shades, tints and tones

Shades

Tints

Tones

Color harmonies

Complementary

The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.

Analogous

Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.

Triadic

Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.

Split Complementary

The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.

Square (Tetradic)

Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.

Rectangle (Tetradic)

Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.

Monochromatic

A single hue across five lightness levels. The foundation of most UI scales and the most accessible starting point.

Similar colors

Closest matches

Opacity variations

#e323cf1a

#e323cf33

#e323cf4d

#e323cf66

#e323cf80

#e323cf99

#e323cfb3

#e323cfcc

#e323cfe6

#e323cfff

Accessibility and contrast

On white

3.88:1

Body text AA Large · Large text AA

On black

5.41:1

Body text AA · Large text AA

White-on-color contrast is 3.88:1.

Color blindness preview

Protanopia

No red cones — ~1% of men

Protanomaly

Reduced red sensitivity — ~1% of men

Deuteranopia

No green cones — ~1% of men

Deuteranomaly

Reduced green sensitivity — ~5% of men

Tritanopia

No blue cones — very rare

Tritanomaly

Reduced blue sensitivity — very rare

Achromatopsia

No color perception — ~1 in 30,000

Achromatomaly

Partial color perception — rare

Meaning, psychology and brand usage

Confident, contemporary, impossible to ignore

Magenta has no single wavelength — the brain constructs it — and that unusual quality is part of why it feels synthetic and current. It signals boldness and non-conformity without red's aggression.

Modernity, playfulness, and inclusivity in contemporary Western design; historically associated with fashion and print.

Named after the 1859 Battle of Magenta, the dye arrived alongside mauveine in the first wave of synthetic colours. It is one of the four process inks in CMYK printing.

Works as a high-impact accent or a brave primary in fashion, telecom, and culture. Needs generous white space; at scale it fatigues the eye quickly.

Common industries: Fashion, Telecom, Music, Culture, Beauty. Pairs well with deep indigo for depth, cream for softness, charcoal for editorial contrast.

Code exports

CSS

:root {
  --color-fuchsia: #e323cf;
  --color-fuchsia-rgb: 227 35 207;
  --color-fuchsia-hsl: 306 77% 51%;
  --color-fuchsia-oklch: 64.03% 0.2703 333.38;
}

.element {
  color: #e323cf;
  background-color: hsl(306, 77%, 51%);
  border: 1px solid rgb(227 35 207 / 40%);
}

SCSS

$fuchsia: #e323cf;
$fuchsia-light: #f191e7;
$fuchsia-dark: #721268;

.element {
  color: $fuchsia;
  background: rgba($fuchsia, 0.12);

  &:hover {
    color: darken($fuchsia, 8%);
  }
}

LESS

@fuchsia: #e323cf;
@fuchsia-light: lighten(@fuchsia, 12%);
@fuchsia-dark: darken(@fuchsia, 12%);

.element {
  color: @fuchsia;
  background: fade(@fuchsia, 12%);
}

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-fuchsia-50: #f9d3f5;
  --color-fuchsia-100: #f7bdf1;
  --color-fuchsia-200: #f4a7ec;
  --color-fuchsia-300: #ee7be2;
  --color-fuchsia-400: #e94fd9;
  --color-fuchsia-500: #e323cf;
  --color-fuchsia-600: #cc20ba;
  --color-fuchsia-700: #9f1991;
  --color-fuchsia-800: #721268;
  --color-fuchsia-900: #440b3e;
}

/* Usage */
<div class="bg-fuchsia-500 text-fuchsia-50 ring-fuchsia-600" />

/* Arbitrary value, no config needed */
<div class="bg-[#e323cf]" />

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$fuchsia: #e323cf;
$primary: $fuchsia;

$theme-colors: map-merge($theme-colors, (
  "fuchsia": $fuchsia
));

// Generates .text-fuchsia, .bg-fuchsia, .btn-fuchsia
@import "bootstrap/scss/bootstrap";

Flutter

import 'package:flutter/material.dart';

const Color fuchsia = Color(0xFFE323CF);

// As a MaterialColor swatch
const MaterialColor fuchsiaSwatch = MaterialColor(0xFFE323CF, <int, Color>{
  50: Color(0xFFF9D3F5),
  100: Color(0xFFF7BDF1),
  200: Color(0xFFF4A7EC),
  300: Color(0xFFEE7BE2),
  400: Color(0xFFE94FD9),
  500: Color(0xFFE323CF),
  600: Color(0xFFCC20BA),
  700: Color(0xFF9F1991),
  800: Color(0xFF721268),
  900: Color(0xFF440B3E),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #e323cf — Fuchsia
    static let fuchsia = Color(
        red: 0.8902,
        green: 0.1373,
        blue: 0.8118
    )
}

// UIKit
extension UIColor {
    static let fuchsia = UIColor(
        red: 0.8902,
        green: 0.1373,
        blue: 0.8118,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="fuchsia">#E323CF</color>
    <color name="fuchsia_translucent">#80E323CF</color>
</resources>

<!-- Jetpack Compose -->
val Fuchsia = Color(0xFFE323CF)

JavaScript

export const FUCHSIA = {
  hex: "#e323cf",
  rgb: [227, 35, 207],
  hsl: [306, 77, 51],
  oklch: "oklch(64.03% 0.2703 333.38)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "fuchsia": {
    "$type": "color",
    "$value": "#e323cf",
    "$description": "Fuchsia — generated by ColorVerse AI"
  }
}