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