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
Medium Purple #9370DB is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
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
Medium Purple #9370DB pairs with #B8DB70 as its complementary color, and #DB9370 and #70DB93 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
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.
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);
}