Wisteria Color Codes
Wisteria is a light, muted purple with the hex code #C9A0DC, RGB values of 201, 160, 220 and an HSL value of hsl(281, 46%, 75%).
| HEX | #C9A0DC |
|---|---|
| RGB | 201, 160, 220 |
| HSL | hsl(281, 46%, 75%) |
| HSV | 281°, 27%, 86% |
| CMYK | 9%, 27%, 0%, 14% |
| LAB | 71.37, 25.89, -24.67 |
| CIELCHuv | 71.37, 46.51, 293.46° |
- Nearest Pantone
- PMS 2567 C ΔE 5.0 · approximate
- Nearest CSS name
-
plumΔE 7.4
Source Wikipedia, List of colors
Wisteria Color Hex Code
The Wisteria color hex code is #C9A0DC. Those six digits are three pairs, C9 for red, A0 for green and DC for blue, which is the same triplet a browser reads from the CSS value below.
#C9A0DC
Wisteria Color RGB Code
The Wisteria RGB code is rgb(201, 160, 220). Blue carries the most light at 220 of 255, which is what puts this color where it sits on the wheel.
rgb(201, 160, 220)
Wisteria Color HSV Code
The Wisteria HSV code is 281°, 27%, 86%. Read it as a hue of 281 degrees, 27% saturation and 86% value, which is the form most color pickers use because moving one number changes one thing.
281°, 27%, 86%
Wisteria Color CIELChuv Code
The Wisteria CIELCHuv code is 71.37, 46.51, 293.46°. Unlike hex or RGB this one is perceptual: lightness 71 means light to the eye rather than to the screen, and chroma 47 is how far it sits from grey.
71.37, 46.51, 293.46°
Tonal scale
What are Wisteria Color Palettes?
A shade mixes toward black, a tint toward white, a tone toward grey. Every step keeps the hue and is copy-ready.
Shades, toward black
Tints, toward white
Tones, toward grey
Palettes
What are Wisteria Color Palette Codes?
Each of these is a hue rotation from #C9A0DC. They are generated, not curated, so they are exact.
Complementary
Half a turn away is #B3DCA0, a light, muted green. This is the widest separation the wheel offers, and the reason complementary pairs are the default for anything that must stand out. Neither is especially saturated, so this pairing stays calm enough for large areas of both.
Analogous
Either side sit #ABA0DC and #DCA0D1, 30 degrees out. Low tension by construction: useful when you need several related tones that still feel like one choice.
Triadic
#DCC9A0 and #A0DCC9 complete an even 120 degree split. Three fully independent hues, so one has to lead: keep this base dominant and let the other two appear in small quantities.
Split-complementary
Instead of the direct complement, this takes the two hues either side of it: #D1DCA0 and #A0DCAB. Almost the same contrast, without the edge shimmer a true complementary pair produces at high saturation.
Tetradic
Two complementary pairs forming a rectangle: this base with #B3DCA0, and #DCABA0 with #A0D1DC. The richest of the five and the hardest to balance, so treat the darkest of the four as the lead and hold the other three well back.
Accessibility
Contrast checker: is Wisteria accessible?
Measured against white and against black, with a separate verdict for each element type. Small text, large text and UI components have different thresholds, so one pass or fail for the whole color would be wrong roughly a third of the time.
White background
2.20:12.20
contrast ratio on white background
| Element | AA | AAA |
|---|---|---|
| Small text needs 4.5:1 / 7:1 | Fails | Fails |
| Large text needs 3:1 / 4.5:1 | Fails | Fails |
| UI component needs 3:1 | Fails | n/a |
Black background
9.55:19.55
contrast ratio on black background
| Element | AA | AAA |
|---|---|---|
| Small text needs 4.5:1 / 7:1 | Passes | Passes |
| Large text needs 3:1 / 4.5:1 | Passes | Passes |
| UI component needs 3:1 | Passes | n/a |
At 2.20:1 against white, Wisteria is a fill color rather than a text color. Use it for surfaces, borders and large display type, and set the copy in ink. Text placed on it should be black, which gives 9.55:1.
Color vision
How Wisteria looks with color blindness
Around 300 million people see color differently from the way it is specified. Each card shows the actual color beside how it appears, and how common that form of vision is.
Protanopia
About 1% of men#B9B8D0
Wisteria shifts noticeably here. ΔE 24.8
No working red cones. Reds darken sharply and drift toward the same muddy olive as green.
Deuteranopia
About 1% of men#BBBECC
Wisteria changes substantially here. ΔE 30.3
No working green cones. With the milder deuteranomaly at nearer 6% of men, this is by far the most common form, and the one worth designing around.
Tritanopia
About 1 in 10,000#C7C5C3
Wisteria changes substantially here. ΔE 37.3
No working blue cones. Blues shift toward green and yellows toward pink. Rare, and unlike the others it is not sex-linked, so it affects men and women equally.
Achromatopsia
About 1 in 30,000#AFAFAF
Wisteria changes substantially here. ΔE 35.8
No color vision at all. Also a fair proxy for how the color survives a greyscale print or a failing screen.
To a deuteranope, the most common form, Wisteria reads as #BBBECC. That is a shift of ΔE 30.3, so it is a different color to roughly one man in sixteen. Blues survive red-green deficiency well, which is why so much interface design leans on them. The form to watch here is tritanopia, though at roughly 1 in 10,000 it affects far fewer people. The widest shift is under tritanopia, at ΔE 37.3. The rule this leads to needs no simulator: never let color be the only thing carrying a message. Add a label, an icon, or a clear difference in lightness, and the problem disappears for everyone.
Snippets
Using Wisteria in code
:root {
--wisteria: #C9A0DC;
}
.example {
color: var(--wisteria);
}
// tailwind.config.js
theme: {
extend: {
colors: {
'wisteria': '#C9A0DC',
},
},
}
// SwiftUI takes 0–1 components, not 0–255.
let wisteria = Color(
red: 0.788,
green: 0.627,
blue: 0.863
)
<!-- res/values/colors.xml -->
<color name="wisteria">#C9A0DC</color>
// Flutter wants ARGB: FF for full opacity, then the hex.
const wisteria = Color(0xFFC9A0DC);