Spanish Violet
HEX: #4C2882 | Modern Palette
Color Specifications
#4C2882
76, 40, 130
264°, 69% ,50%
41.54, 69.23, 0, 49.02
About Spanish Violet
Spanish Violet (#4C2882) is a color with RGB(76, 40, 130) and HSL(264°, 69.23%, 50.98%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Accent. Its complementary color is #5E8228, which creates strong contrast. Its triadic palette includes #824C28 and #28824C.
- HEX: #4C2882
- RGB: 76, 40, 130
- HSL: 264°, 69.23%, 50.98%
- Mood: Romantic
- Use case: Text, Button, Accent
- Complementary color: #5E8228
- Triadic colors: #824C28, #28824C
Live Components
Color Palettes
Spanish Violet #4C2882 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
Spanish Violet #4C2882 pairs with #5E8228 as its complementary color, and #824C28 and #28824C 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: #4C2882;
}
/* Text */
.element {
color: #4C2882;
}
/* Border */
.element {
border: 1px solid #4C2882;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#4C2882,
#93D92B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#4C2882,
#93D92B
);
}
// SCSS variable
$spanish-violet: #4C2882;
// With RGB channels (useful for rgba() usage)
$spanish-violet-r: 76;
$spanish-violet-g: 40;
$spanish-violet-b: 130;
// Usage
.element {
background-color: $spanish-violet;
color: rgba($spanish-violet-r, $spanish-violet-g, $spanish-violet-b, 0.8);
}