Skip to content
magenta / pink · neutral

#d95dcd

a balanced, vivid magenta / pink · neutral · closest name: Orchid

Token name suggestion: Studio Blossom

RGB
217, 93, 205
HSL
306°, 62%, 61%
CMYK
0, 57, 6, 15
Luminance
0.2699

#d95dcd is a balanced vivid magenta / pink, 306° on the wheel and 47/100 on the cool side. Put black text on it (6.40:1). As text it scores 3.28:1 on white — large text only. Nearest name is Orchid, nearest Tailwind family is fuchsia.

hsl(306 62% 61%)rgb(217 93 205)Base step 500AA inkNeutral

At a glance

Every number on this page in one read: what #d95dcd is made of, how bright it looks, and which way it leans.

Hex
#d95dcd
Hue
306°
magenta / pink
Saturation
62%
vivid
Lightness
61%
balanced
Brightness
85%
HSV value
Perceived
61%
weighted brightness
Luminance
0.2699
WCAG relative
Temperature
Neutral
47/100 cool
Color family
Magenta / pink
Tone
Vivid
Best ink
Black
6.40:1
Closest name
Orchid
ΔE2000 3.9
Chroma
71.6
LCH, 0–130ish
OKLCH L
0.672
perceptual lightness
Tailwind
fuchsia
500 · ΔE 6.6
Web-safe
#CC66CC
nearest of 216
Where it sits
Hue306° of 360°
Saturation62%
Lightness61%
Saturation × lightness field

Left edge is grey, right edge is full chroma; top is white, bottom is black. The dot is #d95dcd.

Temperature
Warm ← → Cool47% cool

Reads neutral. Warm and cool siblings keep the same lightness, so you can swap one in without redoing your contrast maths.

Luminance by channel
Red55%
Green29%
Blue16%

Green carries most of what the eye calls brightness — that is why WCAG weights it 0.7152.

Every format

HEX#d95dcd
HEX (8-digit)#d95dcdff
RGBrgb(217, 93, 205)
RGBArgba(217, 93, 205, 1)
HSLhsl(306, 62%, 61%)
HSV / HSBhsv(306, 57%, 85%)
HWBhwb(306 36% 15%)
CMYKcmyk(0%, 57%, 6%, 15%)
LABlab(59.0 62.3 -35.3)
LCHlch(59.0 71.6 330.5)
OKLCHoklch(0.672 0.202 331.5)
XYZ (D65)xyz(43.55, 26.99, 60.66)
Decimal14245325
Display P3color(display-p3 0.851 0.365 0.804)
Web-safe#CC66CC

Copy-ready code

every platformclick to select
/* CSS */
color: #d95dcd;
background-color: #d95dcd;
/* CSS custom property */
--brand: #d95dcd;
/* Tailwind (arbitrary) */
class="text-[#d95dcd] bg-[#d95dcd]"
/* SCSS */
$brand: #d95dcd;
/* SwiftUI */
Color(red: 0.851, green: 0.365, blue: 0.804)
/* UIKit */
UIColor(red: 0.851, green: 0.365, blue: 0.804, alpha: 1)
/* Android XML */
<color name="brand">#D95DCD</color>
/* Android Compose */
Color(0xFFD95DCD)
/* Flutter */
Color(0xFFD95DCD)
/* Python / OpenCV (BGR) */
(205, 93, 217)
/* Python / PIL (RGB) */
(217, 93, 205)
/* Java AWT */
new Color(217, 93, 205)
/* .NET */
Color.FromArgb(255, 217, 93, 205)
/* OpenGL / Unity (0–1) */
(0.8510f, 0.3647f, 0.8039f, 1f)
/* LaTeX */
\definecolor{brand}{RGB}{217,93,205}
modern cssclick to select
/* mix without leaving CSS */
background: color-mix(in oklab, #d95dcd 85%, white);
border-color: color-mix(in oklab, #d95dcd 40%, transparent);
/* theme-aware in one line */
color: light-dark(#671860, #EED3EC);
/* relative colour syntax */
--hover: hsl(from #d95dcd h s calc(l - 7));

Design tokens

The same ramp in the four formats a team actually needs. Paste one and the whole palette lands with it.

css custom propertiesclick to select
:root {
  --brand-50: #FBF4FA;
  --brand-100: #F7E8F6;
  --brand-200: #F0CCEC;
  --brand-300: #EAA4E3;
  --brand-400: #DF77D5;
  --brand-500: #d95dcd;
  --brand-600: #C62FB8;
  --brand-700: #A52799;
  --brand-800: #841F7A;
  --brand-900: #601A59;
  --brand-950: #3C1038;
  --brand: #d95dcd;
  --brand-ink: #000000;
  --brand-surface: #FAF4FA;
  --brand-border: #EDC0E8;
  --brand-hover: #D240C4;
  --brand-pressed: #C12DB3;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand-surface: #241423;
    --brand-ink: #EED3EC;
  }
}
tailwind.config.jsclick to select
theme: {
  extend: {
    colors: {
      brand: {
        50: '#FBF4FA',
        100: '#F7E8F6',
        200: '#F0CCEC',
        300: '#EAA4E3',
        400: '#DF77D5',
        500: '#d95dcd',
        600: '#C62FB8',
        700: '#A52799',
        800: '#841F7A',
        900: '#601A59',
        950: '#3C1038',
        DEFAULT: '#d95dcd',
      },
    },
  },
}
scss mapclick to select
$brand: (
  '50': #FBF4FA,
  '100': #F7E8F6,
  '200': #F0CCEC,
  '300': #EAA4E3,
  '400': #DF77D5,
  '500': #d95dcd,
  '600': #C62FB8,
  '700': #A52799,
  '800': #841F7A,
  '900': #601A59,
  '950': #3C1038,
);
$brand-base: #d95dcd;
$brand-ink: #000000;

@function brand($step) { @return map-get($brand, $step); }
w3c design tokens (json)click to select
{
  "color": {
    "brand": {
      "50": { "$value": "#FBF4FA", "$type": "color" },
      "100": { "$value": "#F7E8F6", "$type": "color" },
      "200": { "$value": "#F0CCEC", "$type": "color" },
      "300": { "$value": "#EAA4E3", "$type": "color" },
      "400": { "$value": "#DF77D5", "$type": "color" },
      "500": { "$value": "#d95dcd", "$type": "color" },
      "600": { "$value": "#C62FB8", "$type": "color" },
      "700": { "$value": "#A52799", "$type": "color" },
      "800": { "$value": "#841F7A", "$type": "color" },
      "900": { "$value": "#601A59", "$type": "color" },
      "950": { "$value": "#3C1038", "$type": "color" }
    },
    "brandInk": { "$value": "#000000", "$type": "color" }
  }
}

Best text color

Only one of black and white can be right. This is the one, with the number that proves it.

Readable at a glance#000000 on #d95dcd · 6.40:1
Use #000000AA at every size, AAA for large text only.
Aa
12px
Aa
16px
Aa
24px
Aa
White text · 3.28:1
AA fail · AA large pass · AAA fail
Aa
Black text · 6.40:1 · recommended
AA pass · AA large pass · AAA fail
Reading the other direction: #d95dcd as text scores 3.28:1 on white and 6.40:1 on black.
Best tinted ink on it, if plain black or white feels flat: #671860 at 3.41:1.

Make it accessible

A contrast checker tells you that you failed. This tells you what to ship instead — same hue, same saturation, lightness moved only as far as WCAG demands.

The quick fox
#CA2FBB · 4.53:1
AA on white−12% L
#CA2FBB
The quick fox
#98248D · 7.07:1
AAA on white−24% L
#98248D
The quick fox
#d95dcd · 6.40:1
AA on blackalready passes
#d95dcd
The quick fox
#DD6ED2 · 7.24:1
AAA on black+4% L
#DD6ED2

Large text — 24px regular or 18.66px bold and above — only needs 3:1, so #D95DCD is enough for headings on white. Non-text elements such as icons, chart strokes and focus rings also sit at 3:1 under WCAG 2.2 (1.4.11).

Accessibility — WCAG contrast

Aa
#d95dcd on white: 3.28:1
AA ✗ fail · AA-large · AAA
Aa
#d95dcd on black: 6.40:1
AA ✓ pass · AA-large · AAA
Against the neutral ladder

Contrast is symmetric, so each row covers both directions: #d95dcd as text on that neutral, and that neutral as text on #d95dcd.

NeutralRatioBoth directions
White3.28:1AaAa
Slate 503.14:1AaAa
Slate 1003.00:1AaAa
Slate 2002.66:1AaAa
Slate 3002.21:1AaAa
Slate 4001.28:1AaAa
Slate 5001.45:1AaAa
Slate 6002.31:1AaAa
Slate 7003.15:1AaAa
Slate 8004.46:1AaAa
Slate 9005.44:1AaAa
Black6.40:1AaAa
Colour vision deficiency
true color
protanopia · #5783D1
deuteranopia · #7E94CA
tritanopia · #E1688D

Roughly one man in twelve has some form of colour vision deficiency. If any of the three panels above is hard to tell apart from a neighbouring colour in your palette, add a shape, an icon or a label so the meaning does not rest on hue alone.

Color scale — 50 to 950

A Tailwind-shaped ramp built around this exact hex. #d95dcd is pinned to step 500; the rest hold its hue and let saturation ease off at the extremes so the pale end never turns neon.

#FBF4FA
#F7E8F6
#F0CCEC
#EAA4E3
#DF77D5
#d95dcd
#C62FB8
#A52799
#841F7A
#601A59
#3C1038
Base = 500Lightest = 50 · #FBF4FADarkest = 950 · #3C1038Text step on white = 600
Perceptual ramp — OKLCH

The same eleven steps expressed in OKLCH, where equal lightness numbers actually look equally spaced. HSL ramps go muddy in the yellows and washed out in the blues; this one does not. Modern browsers render it natively — the hex ramp above is the fallback.

50100200300400500600700800900950
oklch tokensclick to select
:root {
  --brand-50: oklch(0.97 0.051 331.5);
  --brand-100: oklch(0.94 0.081 331.5);
  --brand-200: oklch(0.88 0.121 331.5);
  --brand-300: oklch(0.80 0.158 331.5);
  --brand-400: oklch(0.72 0.186 331.5);
  --brand-500: oklch(0.64 0.202 331.5);
  --brand-600: oklch(0.56 0.202 331.5);
  --brand-700: oklch(0.48 0.190 331.5);
  --brand-800: oklch(0.40 0.170 331.5);
  --brand-900: oklch(0.32 0.142 331.5);
  --brand-950: oklch(0.24 0.111 331.5);
}

Colors that work with #d95dcd

Not a palette — a role sheet. Each swatch answers one question you will hit while building the component.

Text on it#000000
Black wins here
Surface#FAF4FA
Tinted page background
Border#EDC0E8
Hairlines and dividers
Muted text#9B4B93
Captions on the surface
Accent#37A923
Second voice, not a rival
Dark variant#671860
Hover, pressed, headers
Light variant#FAEAF9
Selected rows, tints
Dark surface#241423
Dark-mode background
Hover#D240C4
One step down in lightness
Pressed#C12DB3
Two steps down
Disabled#DDC9DB
Chroma pulled out
Focus ring#E665D9
Offset from the fill so it reads
Light mode
Everything in its place

Surface, border, heading and body all derive from this one hue, so the screen stays coherent without a second palette.

Primary actionSecondaryBadge
Dark mode
Same hue, inverted

Lightness flips, hue holds. The accent stays the anchor in both themes.

Primary actionSecondaryAccent

In real components

The same eight roles, wired into the interface patterns you will actually build with them. Every state below is a computed value, not a mock-up.

Buttons and states
Save changesHoverPressedDisabled
OutlineSubtleLinkFocused
Form field
you@company.com

Focus ring uses the light variant so the field still reads as one shape.

Send me product updates
Notice
Your export is ready

The file stays available for seven days. Download it before it expires.

NewBetaDraft
Data
Storage used68%
Acme LtdActive
NorthwindTrial
GlobexActive

How to use #d95dcd

Derived from its contrast, chroma and lightness — not from taste.

Works well for
  • Headings from 24px up on white
  • Text and icons on dark surfaces
  • Primary buttons and calls to action
  • Focus rings, active and selected states
  • Brand accents, badges and data highlights
  • Chart series and data categories
Use with care
  • Small text on white — under 4.5:1
  • Full-page backgrounds — tiring over long sessions
  • Pairing with a same-lightness hue — edges vibrate
Minimum size as text on white
24px / 18.66px bold
Safe as a fill behind white type
No — use #671860
Safe as a 1px border on white
Yes

Meaning and mood

What a colour in this family tends to signal, and how this particular chroma and lightness change the reading.

expressiveyouthfulwarmconfident

Pink is the fastest way to signal that a product is not another enterprise dashboard. It carries beauty, fashion and culture brands.

This is a confident chroma: strong enough to lead a brand, restrained enough to live in an interface all day. The mid lightness keeps it versatile in both themes.

Worth knowing

Strong gendered associations in some markets — test it with the audience you actually have.

Reads as
  • FormalityMedium
  • EnergyMedium-high
  • Weight39/100
  • TemperatureNeutral
  • ApproachabilityBalanced

Colour associations are cultural and vary by market. Treat these as a starting point for a conversation with your audience, not a finding about them.

Similar colors

One move away from this hex in each direction. Every swatch is its own page.

Color relationships

The wheel positions with their names attached, so you can grab the one you actually need.

Complementary#5DD969
Analogous left#A75DD9
Analogous right#D95D8F
Split-complement 1#8FD95D
Split-complement 2#5DD9A7
Triadic 1#CDD95D
Triadic 2#5DCDD9
Tetradic#D9A75D
On the wheel
Base+30°−30°+120°+240°+180°306°

#d95dcd sits at 306°. Every dot is a harmony position and links to its own page in the table alongside.

RGB percentages

Red85.1%
Green36.5%
Blue80.4%
R · 0–255
217
0xd9
G · 0–255
93
0x5d
B · 0–255
205
0xcd

CMYK percentages

Cyan0.0%
Magenta57.1%
Yellow5.5%
Key (black)14.9%

Total ink coverage is 78%. Most commercial presses cap around 300% — above that, sheets stop drying properly.

Color previews

#d95dcd text on a black background

contrast 6.40:1

Card sample

#d95dcd text on a white background

contrast 3.28:1

Card sample

#d95dcd on grey

3.00:1

#d95dcd on its own surface

3.03:1

#d95dcd on its dark surface

5.33:1

CSS3 live lab

Text font color

The quick brown fox

color: #d95dcd;
Background color
Panel with #d95dcd background
background-color: #d95dcd;
Text shadow — hex

Glowing headline

text-shadow: 2px 2px 8px #d95dcd;
Text shadow — RGB

Soft neon halo

text-shadow: 0 0 14px rgba(217, 93, 205, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(217, 93, 205, 0.45);
Border & gradient
Gradient panel
border: 3px solid #d95dcd;
background: linear-gradient(135deg, #d95dcd, #D95D7A);
Gradient text

Gradient headline

background: linear-gradient(90deg, #d95dcd, #D95F5D);
-webkit-background-clip: text;
color: transparent;
Focus ring
Focused control
outline: 2px solid #d95dcd;
outline-offset: 3px;
Underline & caret

Marked up text

text-decoration-color: #d95dcd;
caret-color: #d95dcd;
Left rule
Pull quote or callout
border-left: 4px solid #d95dcd;
Ring + tint
Selected chip
background: #FAEAF9;
box-shadow: inset 0 0 0 2px #d95dcd;
Conic badge
68%
background: conic-gradient(#d95dcd 68%, #e2e8f0 0);

Transparency

What each alpha value actually composites to. The top row is #d95dcd over white; the bottom row is the same alpha over a checkerboard, so you can see what survives on a photo or a video.

Bottom row of hexes is the flattened result over white — use those when a design tool refuses transparency, or when you need a solid fallback.

alpha in every syntaxclick to select
rgba(217, 93, 205, 0.5)
rgb(217 93 205 / 50%)
#d95dcd80
hsl(306 62% 61% / 50%)
color-mix(in srgb, #d95dcd 50%, transparent)
Alpha8-digit hexFlat on white
10%#d95dcd1a#FBEFFA
20%#d95dcd33#F7DFF5
40%#d95dcd66#F0BEEB
60%#d95dcd99#E89EE1
80%#d95dcdcc#E17DD7

Gradients from #d95dcd

Six recipes, each built from this hex and shown with the exact CSS that produced it.

Elevation
Same hue, three lightnesses — safe anywhere
background: linear-gradient(135deg, #E58FDC, #d95dcd 45%, #671860);
Duotone
A short hue run reads richer than a flat fill
background: linear-gradient(120deg, #d95dcd, #D3445A);
Complement sweep
Loud — keep it behind large type only
background: linear-gradient(90deg, #d95dcd, #5DD969);
Spotlight
Hero panels and app headers
background: radial-gradient(120% 120% at 20% 0%, #EAA7E4 0%, #d95dcd 45%, #671860 100%);
Soft wash
Section backgrounds that stay readable
background: linear-gradient(180deg, #FAF4FA, #ffffff);
Mesh
Ambient background, no image weight
background: radial-gradient(60% 60% at 15% 20%, #B686E3 0%, transparent 60%), radial-gradient(55% 55% at 85% 15%, #DF7697 0%, transparent 60%), radial-gradient(70% 70% at 50% 95%, #671860 0%, transparent 65%), #d95dcd;

Monochromatic scale

Palettes built from #d95dcd

Shades — darker

Tints — lighter

Tones — desaturated

Color harmonies

Nearest named colors

Ranked with CIEDE2000 across all 139 CSS keywords. Under ΔE 2 the eye stops telling them apart; over ΔE 10 they are plainly different colors.

#d95dcd in the real world

Where a color in this family tends to land, and the interface roles it is usually asked to play.

Industries
BeautyFashionLifestyleYouth brands
Common UI roles
ButtonsLinksFocus statesCharts
Print note

Converts to four-color process without much drama. Proof it anyway.

On screens

Holds up across typical panel gamma. Still worth checking on an uncalibrated laptop, where mid-tones shift most.

In dark mode

Usable as-is on a dark surface at 6.40:1.

Explore nearby colors

Small, deliberate steps away from this hex — useful when you are hunting for the version of a colour that finally feels right.

#d95dcd, answered

What color is #d95dcd?

#d95dcd is a balanced vivid magenta / pink, closest to Orchid (ΔE2000 3.9). It sits at 306° on the hue wheel with 62% saturation and 61% lightness, which reads as neutral.

What is the RGB value of #d95dcd?

rgb(217, 93, 205) — 217 red, 93 green and 205 blue out of 255, or 85.1% / 36.5% / 80.4% by channel.

What is #d95dcd in HSL and HSV?

hsl(306, 62%, 61%) and hsv(306, 57%, 85%). HSL is what CSS takes; HSV is what your design tool's picker shows, which is why the saturation numbers rarely match.

Is #d95dcd a light or a dark color?

It is a mid-tone. Relative luminance is 0.2699 and perceived brightness is 61%, so black text on it reaches 6.40:1.

Should I use black or white text on #d95dcd?

Black. It scores 6.40:1 against #d95dcd, versus 3.28:1 for white — AA at any size.

Is #d95dcd accessible on a white background?

#d95dcd on white scores 3.28:1, which only clears AA for large text — 18.66px bold or 24px regular and up. Darken it to #CA2FBB to reach 4.5:1, or #98248D for 7:1.

What is the complementary color of #d95dcd?

#5DD969 sits directly opposite on the wheel. Softer options are the split-complements #8FD95D and #5DD9A7, which give the same contrast with far less vibration.

What colors go well with #d95dcd?

For interface work: #FAF4FA as the surface, #EDC0E8 for borders, #9B4B93 for secondary text, #37A923 as an accent and #671860 for hover and pressed states. For a palette, the analogous pair #A75DD9 and #D95D8F stays calm, while #5DD969 is the loudest partner.

What is #d95dcd in CMYK for printing?

cmyk(0%, 57%, 6%, 15%). This is a screen-to-ink approximation — ask your printer for a proof before committing to a run.

Is #d95dcd warm or cool?

Neutral — it scores 47 on a scale where 0 is the warmest orange and 100 the coolest azure. Nudged warmer it becomes #D95DA0; nudged cooler, #B85BDB.

Which Tailwind color is closest to #d95dcd?

The fuchsia family — its 500 step is #d946ef, ΔE2000 6.6 away. That is a visible difference, so define #d95dcd as a custom token rather than reaching for the built-in.

How do I use #d95dcd in Tailwind CSS?

Inline it as an arbitrary value with bg-[#d95dcd] or text-[#d95dcd], or register the whole ramp under theme.extend.colors.brand so you get bg-brand-500 and friends. The generated 50–950 scale on this page is ready to paste into your config.

What is #d95dcd with 50% opacity?

rgba(217, 93, 205, 0.5), or #d95dcd80 in eight-digit hex. Over white that composites to #ECAEE6; over black, #6D2F67.

Is #d95dcd a web-safe color?

No. The nearest web-safe colour is #CC66CC, ΔE2000 2.4 away. The palette only matters for legacy displays and some email clients now.

What does the color #d95dcd mean?

As a magenta / pink, it reads expressive, youthful, warm. Pink is the fastest way to signal that a product is not another enterprise dashboard. It carries beauty, fashion and culture brands. At this chroma the effect is amplified — it will dominate whatever sits beside it.

What gradient works with #d95dcd?

The safest is same-hue elevation: linear-gradient(135deg, #E58FDC, #d95dcd 45%, #671860). For more colour, a short hue run to #D3445A keeps it rich without turning muddy.

Work with #d95dcd in the Color Lab

Every tool opens with this colour already loaded.

Every value on this page is computed from #d95dcd at request time — conversions, contrast ratios and ΔE distances are calculated, never looked up.