Blue Bell

HEX: #A2A2D0 | Modern Palette

On White
2.44:1
FAIL
On Black
8.62:1
PASS

Color Specifications

HEX
#A2A2D0
RGB
162, 162, 208
HSL
240°, 32% ,72%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Calm
Style
Pastel Cool
Use case
Text Print

Accessibility Simulation

Deuteranopia #A2A2D0
Protanopia #A2A2D0
Tritanopia #9AA9A9
Achromatopsia #A6A6A6

Frequently Asked Questions

Blue Bell (#A2A2D0) is a color with RGB(162, 162, 208) and HSL(240°, 32.9%, 72.5%).

#A2A2D0 pairs strongly with #D0D0A2 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#A2A2D0 is suitable for Text, Print and works well with Pastel, Cool styles.

#A2A2D0 is commonly associated with Calm.

The name Blue Bell is linked to Bluebell from English, meaning A European plant (Hyacinthoides non-scripta) of the lily family, having a cluster of fragrant, bell-shaped blue flowers. Also, a common name for other plants with similar flowers..

Name, History & Etymology

Origin Word Bluebell
Meaning A European plant (Hyacinthoides non-scripta) of the lily family, having a cluster of fragrant, bell-shaped blue flowers. Also, a common name for other plants with similar flowers.
Language English
First Recorded Use Late 16th Century

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.

Similar Named Colors

Ceil #92A1CF ΔE 4.92
Wild Blue Yonder #A2ADD0 ΔE 5.17
Light Pastel Purple #B19CD9 ΔE 5.71
Cool Grey #8C92AC ΔE 8.49

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);
}