#9B4E8A Mulberry

rgb(155, 78, 138)

Color conversions

HEX
#9B4E8A
RGB
rgb(155, 78, 138)
RGBA
rgba(155, 78, 138, 1)
HSL
hsl(313, 33%, 46%)
HSV / HSB
hsv(313, 50%, 61%)
CMYK
cmyk(0%, 50%, 11%, 39%)

Wide-gamut spaces

XYZ
xyz(20.829, 14.254, 25.694)
LAB
lab(44.59 40.27 -19.12)
LCH
lch(44.59 44.58 334.6)
OKLAB
oklab(53.87% 0.1169 -0.0516)
OKLCH
oklch(53.87% 0.1278 336.19)
Nearest name
Mulberry

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

#9b4e8a1a

#9b4e8a33

#9b4e8a4d

#9b4e8a66

#9b4e8a80

#9b4e8a99

#9b4e8ab3

#9b4e8acc

#9b4e8ae6

#9b4e8aff

Accessibility and contrast

On white

5.45:1

Body text AA · Large text AA

On black

3.85:1

Body text AA Large · Large text AA

White-on-color contrast is 5.45: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-mulberry: #9b4e8a;
  --color-mulberry-rgb: 155 78 138;
  --color-mulberry-hsl: 313 33% 46%;
  --color-mulberry-oklch: 53.87% 0.1278 336.19;
}

.element {
  color: #9b4e8a;
  background-color: hsl(313, 33%, 46%);
  border: 1px solid rgb(155 78 138 / 40%);
}

SCSS

$mulberry: #9b4e8a;
$mulberry-light: #cda7c5;
$mulberry-dark: #4e2745;

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

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

LESS

@mulberry: #9b4e8a;
@mulberry-light: lighten(@mulberry, 12%);
@mulberry-dark: darken(@mulberry, 12%);

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

Tailwind CSS

/* Tailwind v4 — src/styles.css */
@theme {
  --color-mulberry-50: #ebdce8;
  --color-mulberry-100: #e1cadc;
  --color-mulberry-200: #d7b8d0;
  --color-mulberry-300: #c395b9;
  --color-mulberry-400: #af71a1;
  --color-mulberry-500: #9b4e8a;
  --color-mulberry-600: #8c467c;
  --color-mulberry-700: #6d3761;
  --color-mulberry-800: #4e2745;
  --color-mulberry-900: #2f1729;
}

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

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

Bootstrap

// Bootstrap 5 — _variables.scss (before importing bootstrap)
$mulberry: #9b4e8a;
$primary: $mulberry;

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

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

Flutter

import 'package:flutter/material.dart';

const Color mulberry = Color(0xFF9B4E8A);

// As a MaterialColor swatch
const MaterialColor mulberrySwatch = MaterialColor(0xFF9B4E8A, <int, Color>{
  50: Color(0xFFEBDCE8),
  100: Color(0xFFE1CADC),
  200: Color(0xFFD7B8D0),
  300: Color(0xFFC395B9),
  400: Color(0xFFAF71A1),
  500: Color(0xFF9B4E8A),
  600: Color(0xFF8C467C),
  700: Color(0xFF6D3761),
  800: Color(0xFF4E2745),
  900: Color(0xFF2F1729),
});

Swift / SwiftUI

import SwiftUI

extension Color {
    /// #9b4e8a — Mulberry
    static let mulberry = Color(
        red: 0.6078,
        green: 0.3059,
        blue: 0.5412
    )
}

// UIKit
extension UIColor {
    static let mulberry = UIColor(
        red: 0.6078,
        green: 0.3059,
        blue: 0.5412,
        alpha: 1.0
    )
}

Android

<!-- res/values/colors.xml -->
<resources>
    <color name="mulberry">#9B4E8A</color>
    <color name="mulberry_translucent">#809B4E8A</color>
</resources>

<!-- Jetpack Compose -->
val Mulberry = Color(0xFF9B4E8A)

JavaScript

export const MULBERRY = {
  hex: "#9b4e8a",
  rgb: [155, 78, 138],
  hsl: [313, 33, 46],
  oklch: "oklch(53.87% 0.1278 336.19)",
};

JSON tokens

{
  "$schema": "https://design-tokens.org/schema.json",
  "mulberry": {
    "$type": "color",
    "$value": "#9b4e8a",
    "$description": "Mulberry — generated by ColorVerse AI"
  }
}