Bubbles

HEX: #E7FEFF | Modern Palette

On White
1.05:1
FAIL
On Black
20.02:1
PASS

Color Specifications

HEX
#E7FEFF
RGB
231, 254, 255
HSL
182°, 100% ,95%
CMYK
9, 0, 0, 0

About Bubbles

Bubbles (#E7FEFF) is a color with RGB(231, 254, 255) and HSL(182.5°, 100%, 95.3%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #FFE8E7, which creates strong contrast. Its triadic palette includes #FFE7FE and #FEFFE7. The name comes from Bubbles (English).

  • HEX: #E7FEFF
  • RGB: 231, 254, 255
  • HSL: 182.5°, 100%, 95.3%
  • Mood: Playful
  • Style: Neon, Cool
  • Use case: Text, Button, Background
  • Complementary color: #FFE8E7
  • Triadic colors: #FFE7FE, #FEFFE7
  • The name comes from Bubbles (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 #E7FEFF from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Cool

Accessibility Simulation

Deuteranopia #F8F8FF
Protanopia #FCFCFF
Tritanopia #E7FEFE
Achromatopsia #F9F9F9

Frequently Asked Questions

Bubbles (#E7FEFF) is a color with RGB(231, 254, 255) and HSL(182.5°, 100%, 95.3%).

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

#E7FEFF is suitable for Text, Button, Background and works well with Neon, Cool styles.

#E7FEFF is commonly associated with Playful.

The name Bubbles is linked to Bubbles from English, meaning Small spheres of gas in a liquid..

Name, History & Etymology

Origin Word Bubbles
Meaning Small spheres of gas in a liquid.
Language English
First Recorded Use Late Middle English

History

The word 'bubble' first appeared in English in the late 14th century, likely as an onomatopoeic formation, mimicking the sound of bubbles. It was used to describe the small spherical pockets of air or gas found in liquids. Over time, its usage expanded to include metaphorical meanings, such as a 'bubble of excitement' or a 'housing bubble,' referring to something fragile, temporary, or inflated. The color 'Bubbles' (#e7feff) is a very pale, light blue, reminiscent of the delicate, iridescent film of soap bubbles.

First Recorded Use

14th Century

Cultural Associations

Bubbles are widely associated with childhood, play, and innocence, particularly through soap bubbles. They also symbolize fragility, transience, and the ephemeral nature of things. In finance, a 'bubble' refers to an economic cycle characterized by rapid escalation of asset prices followed by a contraction. The color 'Bubbles' evokes a sense of lightness, airiness, and purity, often used in designs for babies, spas, or to create a serene atmosphere.

Similar Named Colors

Light Cyan #E0FFFF ΔE 2.55
Azure Mist/web #F0FFFF ΔE 2.72
Mint Cream #F5FFFA ΔE 4.99
Alice Blue #F0F8FF ΔE 7.08

Code Snippets

/* Background */
.element {
    background-color: #E7FEFF;
}

/* Text */
.element {
    color: #E7FEFF;
}

/* Border */
.element {
    border: 1px solid #E7FEFF;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #E7FEFF,
        #FFE8E7
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #E7FEFF,
        #FFE8E7
    );
}

// SCSS variable
$bubbles: #E7FEFF;

// With RGB channels (useful for rgba() usage)
$bubbles-r: 231;
$bubbles-g: 254;
$bubbles-b: 255;

// Usage
.element {
    background-color: $bubbles;
    color: rgba($bubbles-r, $bubbles-g, $bubbles-b, 0.8);
}