Celeste
HEX: #B2FFFF | Modern Palette
Color Specifications
#B2FFFF
178, 255, 255
180°, 100% ,84%
30, 0, 0, 0
About Celeste
Celeste (#B2FFFF) is a color with RGB(178, 255, 255) and HSL(180°, 100%, 84.9%). 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 #FFB2B2, which creates strong contrast. Its triadic palette includes #FFB2FF and #FFFFB2. The name comes from caelestis (Latin).
- HEX: #B2FFFF
- RGB: 178, 255, 255
- HSL: 180°, 100%, 84.9%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #FFB2B2
- Triadic colors: #FFB2FF, #FFFFB2
- The name comes from caelestis (Latin).
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 #B2FFFF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The name Celeste derives from the Latin word 'caelestis', meaning 'heavenly' or 'of the sky'. It was often used in reference to the heavens or divine beings. As a given name, it has been used for centuries, particularly in Catholic cultures where it can be associated with the Virgin Mary, often referred to as 'Queen of Heaven'. It saw a resurgence in popularity in the 19th and 20th centuries in various Western countries. The color 'Celeste' (a pale sky blue) is also named after this concept.
First Recorded Use
As a given name, it gained popularity in the medieval period, particularly in Romance language speaking countries.
Cultural Associations
Celeste is a popular name in many Romance language countries (e.g., Italy, Spain, France, Portugal, and Latin America). It is also recognized and used in English-speaking countries. The name evokes images of the sky, heaven, and often has connotations of purity, serenity, and divinity. It is sometimes used as a surname as well. The color Celeste is a specific shade of light blue, often associated with the sky or the Italian national sports teams (e.g., cycling).
Code Snippets
/* Background */
.element {
background-color: #B2FFFF;
}
/* Text */
.element {
color: #B2FFFF;
}
/* Border */
.element {
border: 1px solid #B2FFFF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B2FFFF,
#FFB2B2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B2FFFF,
#FFB2B2
);
}
// SCSS variable
$celeste: #B2FFFF;
// With RGB channels (useful for rgba() usage)
$celeste-r: 178;
$celeste-g: 255;
$celeste-b: 255;
// Usage
.element {
background-color: $celeste;
color: rgba($celeste-r, $celeste-g, $celeste-b, 0.8);
}