Dark Purple
HEX: #301934 | Modern Palette
Color Specifications
#301934
48, 25, 52
291°, 51% ,20%
7.69, 51.92, 0, 79.61
About Dark Purple
Dark Purple (#301934) is a color with RGB(48, 25, 52) and HSL(291.11°, 51.92%, 20.39%). It is commonly associated with Bold moods. In design, it is suitable for Text, Button, Background. Its complementary color is #1D3419, which creates strong contrast. Its triadic palette includes #343019 and #193430.
- HEX: #301934
- RGB: 48, 25, 52
- HSL: 291.11°, 51.92%, 20.39%
- Mood: Bold
- Use case: Text, Button, Background
- Complementary color: #1D3419
- Triadic colors: #343019, #193430
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 #301934 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#212134
#1C1C34
#2D1E1E
#222222
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #301934;
}
/* Text */
.element {
color: #301934;
}
/* Border */
.element {
border: 1px solid #301934;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#301934,
#214F19
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#301934,
#214F19
);
}
// SCSS variable
$dark-purple: #301934;
// With RGB channels (useful for rgba() usage)
$dark-purple-r: 48;
$dark-purple-g: 25;
$dark-purple-b: 52;
// Usage
.element {
background-color: $dark-purple;
color: rgba($dark-purple-r, $dark-purple-g, $dark-purple-b, 0.8);
}