Bubbles
HEX: #E7FEFF | Modern Palette
Color Specifications
#E7FEFF
231, 254, 255
182°, 100% ,95%
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
Color Palettes
Bubbles #E7FEFF is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Bubbles #E7FEFF pairs with #FFE8E7 as its complementary color, and #FFE7FE and #FEFFE7 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}