Blue Bell
HEX: #A2A2D0 | Modern Palette
Color Specifications
#A2A2D0
162, 162, 208
240°, 32% ,72%
22, 22, 0, 18
About Blue Bell
Blue Bell (#A2A2D0) is a color with RGB(162, 162, 208) and HSL(240°, 32.9%, 72.5%). It is commonly associated with Calm moods. In design, it fits Pastel, Cool styles and is suitable for Text, Print. Its complementary color is #D0D0A2, which creates strong contrast. Its triadic palette includes #D0A2A2 and #A2D0A2. The name comes from Bluebell (English).
- HEX: #A2A2D0
- RGB: 162, 162, 208
- HSL: 240°, 32.9%, 72.5%
- Mood: Calm
- Style: Pastel, Cool
- Use case: Text, Print
- Complementary color: #D0D0A2
- Triadic colors: #D0A2A2, #A2D0A2
- The name comes from Bluebell (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 #A2A2D0 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'bluebell' is a compound word, combining 'blue' (referring to the color of the flowers) and 'bell' (referring to their shape). The plant itself has been recognized and admired for centuries in Europe. Its association with woodlands and spring has made it a significant part of folklore and poetry. The specific species most commonly referred to as 'bluebell' in the UK is Hyacinthoides non-scripta, while in North America, 'bluebell' often refers to species like Virginia bluebells (Mertensia virginica). The color #a2a2d0 is a light, muted blue-purple, reminiscent of the delicate hue often found in bluebell flowers, particularly when viewed in certain lighting or as a more stylized representation.
First Recorded Use
The first recorded use of 'bluebell' to refer to the flower is around the late 16th century. Prior to this, various regional names might have been used.
Cultural Associations
Bluebells are deeply embedded in British culture, often symbolizing humility, constancy, gratitude, and everlasting love. They are frequently mentioned in literature and poetry, evoking images of ancient woodlands and spring. In folklore, bluebells are sometimes associated with fairies and are believed to ring to call them to gatherings. Picking bluebells was traditionally thought to bring bad luck or to anger the fairies. They are also a protected species in some areas, highlighting their ecological importance. The color itself, #a2a2d0, while not a direct match for all bluebells, captures a soft, ethereal quality often associated with these flowers.
Code Snippets
/* Background */
.element {
background-color: #A2A2D0;
}
/* Text */
.element {
color: #A2A2D0;
}
/* Border */
.element {
border: 1px solid #A2A2D0;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A2A2D0,
#D0D0A2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A2A2D0,
#D0D0A2
);
}
// SCSS variable
$blue-bell: #A2A2D0;
// With RGB channels (useful for rgba() usage)
$blue-bell-r: 162;
$blue-bell-g: 162;
$blue-bell-b: 208;
// Usage
.element {
background-color: $blue-bell;
color: rgba($blue-bell-r, $blue-bell-g, $blue-bell-b, 0.8);
}