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
French Plum #811453 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
French Plum #811453 pairs with #148142 as its complementary color, and #538114 and #145381 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}