Amethyst
HEX: #9966CC | Modern Palette
Color Specifications
#9966CC
153, 102, 204
270°, 50% ,80%
25, 50, 0, 20
About Amethyst
Amethyst (#9966CC) is a color with RGB(153, 102, 204) and HSL(270°, 50%, 80%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Background. Its complementary color is #99CC66, which creates strong contrast. Its triadic palette includes Brown Yellow (#CC9966) and #66CC99. The name comes from amethystos (Ancient Greek).
- HEX: #9966CC
- RGB: 153, 102, 204
- HSL: 270°, 50%, 80%
- Mood: Romantic
- Use case: Text, Button, Background
- Complementary color: #99CC66
- Triadic colors: Brown Yellow (#CC9966), #66CC99
- The name comes from amethystos (Ancient Greek).
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 #9966CC from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#7878CB
#6D6DCC
#8A7979
#7D7D7D
Frequently Asked Questions
Name, History & Etymology
History
Amethyst has been used in jewelry and as a decorative stone for millennia, with significant deposits found in Brazil, Uruguay, and Siberia. Its color ranges from a light pinkish-violet to a deep purple, often with secondary red or blue hues. Historically, it was considered one of the most precious gemstones, on par with rubies and emeralds, until large deposits were discovered in the 19th century. The stone's color is attributed to irradiation and iron impurities within its crystal lattice.
First Recorded Use
The term 'amethyst' for the purple quartz variety dates back to ancient Greek and Roman times, where it was highly valued for its perceived protective qualities.
Cultural Associations
In ancient Greece, amethyst was associated with Bacchus, the god of wine, and was believed to ward off intoxication. It has also been a significant stone in religious contexts, often used in ecclesiastical jewelry and regalia, symbolizing piety and celibacy. Various cultures have attributed healing and calming properties to amethyst, making it popular in spiritual practices.
Code Snippets
/* Background */
.element {
background-color: #9966CC;
}
/* Text */
.element {
color: #9966CC;
}
/* Border */
.element {
border: 1px solid #9966CC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#9966CC,
#CCE6B3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#9966CC,
#CCE6B3
);
}
// SCSS variable
$amethyst: #9966CC;
// With RGB channels (useful for rgba() usage)
$amethyst-r: 153;
$amethyst-g: 102;
$amethyst-b: 204;
// Usage
.element {
background-color: $amethyst;
color: rgba($amethyst-r, $amethyst-g, $amethyst-b, 0.8);
}