Dark Pastel Purple
HEX: #966FD6 | Modern Palette
Color Specifications
#966FD6
150, 111, 214
262°, 48% ,83%
29.91, 48.13, 0, 16.08
About Dark Pastel Purple
Dark Pastel Purple (#966FD6) is a color with RGB(150, 111, 214) and HSL(262.72°, 48.13%, 83.92%). In design, it is suitable for Text, Button, Background. Its complementary color is #AFD66F, which creates strong contrast. Its triadic palette includes #D6966F and #6FD696.
- HEX: #966FD6
- RGB: 150, 111, 214
- HSL: 262.72°, 48.13%, 83.92%
- Use case: Text, Button, Background
- Complementary color: #AFD66F
- Triadic colors: #D6966F, #6FD696
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 #966FD6 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#7C7CD6
#7474D6
#868282
#838383
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #966FD6;
}
/* Text */
.element {
color: #966FD6;
}
/* Border */
.element {
border: 1px solid #966FD6;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#966FD6,
#DBEAC2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#966FD6,
#DBEAC2
);
}
// SCSS variable
$dark-pastel-purple: #966FD6;
// With RGB channels (useful for rgba() usage)
$dark-pastel-purple-r: 150;
$dark-pastel-purple-g: 111;
$dark-pastel-purple-b: 214;
// Usage
.element {
background-color: $dark-pastel-purple;
color: rgba($dark-pastel-purple-r, $dark-pastel-purple-g, $dark-pastel-purple-b, 0.8);
}