Mulberry Color Codes
Mulberry is a mid-tone, muted magenta with the hex code #C8509B, RGB values of 200, 80, 155 and an HSL value of hsl(323, 52%, 55%).
| HEX | #C8509B |
|---|---|
| RGB | 200, 80, 155 |
| HSL | hsl(323, 52%, 55%) |
| HSV | 323°, 60%, 78% |
| CMYK | 0%, 60%, 23%, 22% |
| LAB | 52.27, 55.74, -16.93 |
| CIELCHuv | 52.27, 75.75, 333.64° |
- Nearest Pantone
- PMS 2375 C ΔE 11.9 · approximate
- Nearest CSS name
-
hotpinkΔE 16.9
Source Wikipedia, List of colors
Mulberry Color Hex Code
The Mulberry color hex code is #C8509B. Those six digits are three pairs, C8 for red, 50 for green and 9B for blue, which is the same triplet a browser reads from the CSS value below.
#C8509B
Mulberry Color RGB Code
The Mulberry RGB code is rgb(200, 80, 155). Red carries the most light at 200 of 255, which is what puts this color where it sits on the wheel.
rgb(200, 80, 155)
Mulberry Color HSV Code
The Mulberry HSV code is 323°, 60%, 78%. Read it as a hue of 323 degrees, 60% saturation and 78% value, which is the form most color pickers use because moving one number changes one thing.
323°, 60%, 78%
Mulberry Color CIELChuv Code
The Mulberry CIELCHuv code is 52.27, 75.75, 333.64°. Unlike hex or RGB this one is perceptual: lightness 52 means mid-toned to the eye rather than to the screen, and chroma 76 is how far it sits from grey.
52.27, 75.75, 333.64°
Tonal scale
What are Mulberry 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 Mulberry Color Palette Codes?
Each of these is a hue rotation from #C8509B. They are generated, not curated, so they are exact.
Complementary
Half a turn away is #50C87D, 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 #B950C8 and #C8505F, 30 degrees out. Low tension by construction: useful when you need several related tones that still feel like one choice.
Triadic
#9BC850 and #509BC8 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: #5FC850 and #50C8B9. 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 #50C87D, and #C8B950 with #505FC8. The richest of the five and the hardest to balance, so treat this base as the lead and hold the other three well back.
Accessibility
Contrast checker: is Mulberry 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
4.14:14.14
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 | Passes | Fails |
| UI component needs 3:1 | Passes | n/a |
Black background
5.08:15.08
contrast ratio on black background
| Element | AA | AAA |
|---|---|---|
| Small text needs 4.5:1 / 7:1 | Passes | Fails |
| Large text needs 3:1 / 4.5:1 | Passes | Passes |
| UI component needs 3:1 | Passes | n/a |
Against white Mulberry reaches 4.14:1, enough for large text and UI borders, but short of the 4.5:1 that body copy needs. Darken it for anything set small. Text placed on it should be black, which gives 5.08:1.
Color vision
How Mulberry 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#A2A18D
Mulberry changes substantially here. ΔE 66.4
No working red cones. Reds darken sharply and drift toward the same muddy olive as green.
Deuteranopia
About 1% of men#A8AF8A
Mulberry changes substantially here. ΔE 75.7
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#C4817E
Mulberry changes substantially here. ΔE 42.9
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#7D7D7D
Mulberry changes substantially here. ΔE 58.3
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, Mulberry reads as #A8AF8A. That is a shift of ΔE 75.7, so it is a different color to roughly one man in sixteen. The widest shift is under deuteranopia, at ΔE 75.7. 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 Mulberry in code
:root {
--mulberry: #C8509B;
}
.example {
color: var(--mulberry);
}
// tailwind.config.js
theme: {
extend: {
colors: {
'mulberry': '#C8509B',
},
},
}
// SwiftUI takes 0–1 components, not 0–255.
let mulberry = Color(
red: 0.784,
green: 0.314,
blue: 0.608
)
<!-- res/values/colors.xml -->
<color name="mulberry">#C8509B</color>
// Flutter wants ARGB: FF for full opacity, then the hex.
const mulberry = Color(0xFFC8509B);