Bright Cerulean

HEX: #1DACD6 | Modern Palette

On White
2.65:1
FAIL
On Black
7.92:1
PASS

Color Specifications

HEX
#1DACD6
RGB
29, 172, 214
HSL
193°, 86% ,83%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Playful
Style
Neon Cool

Accessibility Simulation

Deuteranopia #9494D7
Protanopia #A4A4D6
Tritanopia #00B2B2
Achromatopsia #9F9F9F

Frequently Asked Questions

Bright Cerulean (#1DACD6) is a color with RGB(29, 172, 214) and HSL(193.62°, 86.45%, 83.92%).

#1DACD6 pairs strongly with #D6471D as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#1DACD6 is suitable for Text, Button, Background and works well with Neon, Cool styles.

#1DACD6 is commonly associated with Playful.

Similar Named Colors

Ball Blue #21ABCD ΔE 2.40
Pacific Blue #1CA9C9 ΔE 3.20
Cyan (process) #00B7EB ΔE 3.79
Picton Blue #45B1E8 ΔE 5.36

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