Medium Purple
HEX: #9370DB | Modern Palette
Color Specifications
#9370DB
147, 112, 219
259°, 48% ,85%
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
Color Palettes
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
Accessibility Simulation
#7B7BDB
#7474DB
#818484
#848484
Frequently Asked Questions
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);
}