Violet
HEX: #EE82EE | Modern Palette
Color Specifications
#EE82EE
238, 130, 238
300°, 76% ,72%
0, 45, 0, 7
About Violet
Violet (#EE82EE) is a color with RGB(238, 130, 238) and HSL(300°, 76.1%, 72.2%). It is commonly associated with Playful, Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #82EE82, which creates strong contrast. Its triadic palette includes #EEEE82 and #82EEEE. The name comes from violette (Old French).
- HEX: #EE82EE
- RGB: 238, 130, 238
- HSL: 300°, 76.1%, 72.2%
- Mood: Playful, Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #82EE82
- Triadic colors: #EEEE82, #82EEEE
- The name comes from violette (Old French).
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 #EE82EE from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color violet has been recognized since antiquity, often associated with royalty and spirituality due to the rarity and cost of purple dyes. Medieval manuscripts frequently employed violet pigments derived from plants or minerals. In the Renaissance, artists like Titian utilized violet to create depth and richness in their paintings. The development of synthetic dyes in the 19th century made violet more accessible, leading to its widespread use in fashion and art.
First Recorded Use
The English word 'violet' first appeared in the late 14th century, directly borrowed from Old French 'violette'. It was used to describe both the flower and its characteristic color.
Cultural Associations
Violet is often associated with luxury, wisdom, and mystery across various cultures. In Christianity, it symbolizes penance and mourning, particularly during Lent. It is also a significant color in the LGBTQ+ pride movement, representing spirit and individuality.
Code Snippets
/* Background */
.element {
background-color: #EE82EE;
}
/* Text */
.element {
color: #EE82EE;
}
/* Border */
.element {
border: 1px solid #EE82EE;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#EE82EE,
#82EE82
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#EE82EE,
#82EE82
);
}
// SCSS variable
$violet: #EE82EE;
// With RGB channels (useful for rgba() usage)
$violet-r: 238;
$violet-g: 130;
$violet-b: 238;
// Usage
.element {
background-color: $violet;
color: rgba($violet-r, $violet-g, $violet-b, 0.8);
}