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
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 #4C2882 from deepest shade to lightest tint.
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);
}