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
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 #1DACD6 from deepest shade to lightest tint.
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);
}