Glitter
HEX: #E6E8FA | Modern Palette
Color Specifications
#E6E8FA
230, 232, 250
234°, 66% ,94%
8, 7, 0, 2
About Glitter
Glitter (#E6E8FA) is a color with RGB(230, 232, 250) and HSL(234°, 66.7%, 94.1%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #FAF8E6, which creates strong contrast. Its triadic palette includes #FAE6E8 and #E8FAE6. The name comes from Glitter (English).
- HEX: #E6E8FA
- RGB: 230, 232, 250
- HSL: 234°, 66.7%, 94.1%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #FAF8E6
- Triadic colors: #FAE6E8, #E8FAE6
- The name comes from Glitter (English).
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 #E6E8FA from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#E7E7FA
#E8E8FA
#E3EAEA
#E9E9E9
Frequently Asked Questions
Name, History & Etymology
History
The word 'glitter' comes from the Middle English 'gliteren,' which itself is derived from the Old Norse 'glitra' meaning 'to glitter, to shine.' It shares roots with other Germanic words related to shining, such as German 'glitzern' and Dutch 'glinsteren.' Initially, it described natural phenomena like stars or dew. Over time, its usage expanded to include artificial sparkle and metaphorical brilliance.
First Recorded Use
14th Century
Cultural Associations
Glitter has a strong association with celebration, festivity, and glamour. It is widely used in fashion, cosmetics, arts and crafts, and holiday decorations. Culturally, it can symbolize joy, magic, extravagance, and sometimes superficiality. Its visual impact is often linked to attracting attention and creating a sense of wonder or excitement. The color #e6e8fa, a very light, almost white shade of lavender or periwinkle, evokes a delicate, ethereal, or frosty glitter, often associated with winter, fairies, or subtle elegance rather than overt flashiness.
Code Snippets
/* Background */
.element {
background-color: #E6E8FA;
}
/* Text */
.element {
color: #E6E8FA;
}
/* Border */
.element {
border: 1px solid #E6E8FA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E6E8FA,
#FAF8E6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E6E8FA,
#FAF8E6
);
}
// SCSS variable
$glitter: #E6E8FA;
// With RGB channels (useful for rgba() usage)
$glitter-r: 230;
$glitter-g: 232;
$glitter-b: 250;
// Usage
.element {
background-color: $glitter;
color: rgba($glitter-r, $glitter-g, $glitter-b, 0.8);
}