Bright Cerulean
HEX: #1DACD6 | Modern Palette
Color Specifications
#1DACD6
29, 172, 214
193°, 86% ,83%
86.45, 19.63, 0, 16.08
About Bright Cerulean
Bright Cerulean (#1DACD6) is a color with RGB(29, 172, 214) and HSL(193.62°, 86.45%, 83.92%). 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 #D6471D, which creates strong contrast. Its triadic palette includes #D61DAC and #ACD61D.
- HEX: #1DACD6
- RGB: 29, 172, 214
- HSL: 193.62°, 86.45%, 83.92%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #D6471D
- Triadic colors: #D61DAC, #ACD61D
Live Components
Color Palettes
Bright Cerulean #1DACD6 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
Bright Cerulean #1DACD6 pairs with #D6471D as its complementary color, and #D61DAC and #ACD61D in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #1DACD6;
}
/* Text */
.element {
color: #1DACD6;
}
/* Border */
.element {
border: 1px solid #1DACD6;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#1DACD6,
#F9C3B3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#1DACD6,
#F9C3B3
);
}
// SCSS variable
$bright-cerulean: #1DACD6;
// With RGB channels (useful for rgba() usage)
$bright-cerulean-r: 29;
$bright-cerulean-g: 172;
$bright-cerulean-b: 214;
// Usage
.element {
background-color: $bright-cerulean;
color: rgba($bright-cerulean-r, $bright-cerulean-g, $bright-cerulean-b, 0.8);
}