French Plum
HEX: #811453 | Modern Palette
Color Specifications
#811453
129, 20, 83
325°, 84% ,50%
0, 84.5, 35.66, 49.41
About French Plum
French Plum (#811453) is a color with RGB(129, 20, 83) and HSL(325.32°, 84.5%, 50.59%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #148142, which creates strong contrast. Its triadic palette includes #538114 and #145381.
- HEX: #811453
- RGB: 129, 20, 83
- HSL: 325.32°, 84.5%, 50.59%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #148142
- Triadic colors: #538114, #145381
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 #811453 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #811453;
}
/* Text */
.element {
color: #811453;
}
/* Border */
.element {
border: 1px solid #811453;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#811453,
#17EB70
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#811453,
#17EB70
);
}
// SCSS variable
$french-plum: #811453;
// With RGB channels (useful for rgba() usage)
$french-plum-r: 129;
$french-plum-g: 20;
$french-plum-b: 83;
// Usage
.element {
background-color: $french-plum;
color: rgba($french-plum-r, $french-plum-g, $french-plum-b, 0.8);
}