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
Violet #EE82EE 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
Violet #EE82EE pairs with #82EE82 as its complementary color, and #EEEE82 and #82EEEE in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}