Medium Purple

HEX: #9370DB | Modern Palette

On White
3.76:1
FAIL
On Black
5.58:1
PASS

Color Specifications

HEX
#9370DB
RGB
147, 112, 219
HSL
259°, 48% ,85%
CMYK
32.88, 48.86, 0, 14.12

About Medium Purple

Medium Purple (#9370DB) is a color with RGB(147, 112, 219) and HSL(259.63°, 48.86%, 85.88%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #B8DB70, which creates strong contrast. Its triadic palette includes #DB9370 and #70DB93.

  • HEX: #9370DB
  • RGB: 147, 112, 219
  • HSL: 259.63°, 48.86%, 85.88%
  • Style: Cool
  • Use case: Text, Button, Background
  • Complementary color: #B8DB70
  • Triadic colors: #DB9370, #70DB93

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #9370DB from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Cool

Accessibility Simulation

Deuteranopia #7B7BDB
Protanopia #7474DB
Tritanopia #818484
Achromatopsia #848484

Frequently Asked Questions

Medium Purple (#9370DB) is a color with RGB(147, 112, 219) and HSL(259.63°, 48.86%, 85.88%).

#9370DB pairs strongly with #B8DB70 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#9370DB is suitable for Text, Button, Background and works well with Cool styles.

Similar Named Colors

Dark Pastel Purple #966FD6 ΔE 1.25
Amethyst #9966CC ΔE 4.30
Ube #8878C3 ΔE 5.50
Rich Lavender #A76BCF ΔE 5.50

Code Snippets

/* Background */
.element {
    background-color: #9370DB;
}

/* Text */
.element {
    color: #9370DB;
}

/* Border */
.element {
    border: 1px solid #9370DB;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #9370DB,
        #E1EDC9
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #9370DB,
        #E1EDC9
    );
}

// SCSS variable
$medium-purple: #9370DB;

// With RGB channels (useful for rgba() usage)
$medium-purple-r: 147;
$medium-purple-g: 112;
$medium-purple-b: 219;

// Usage
.element {
    background-color: $medium-purple;
    color: rgba($medium-purple-r, $medium-purple-g, $medium-purple-b, 0.8);
}