Vivid Cerulean

HEX: #00AAEE | Modern Palette

On White
2.63:1
FAIL
On Black
7.98:1
PASS

Color Specifications

HEX
#00AAEE
RGB
0, 170, 238
HSL
197°, 100% ,93%
CMYK
100, 28.57, 0, 6.67

About Vivid Cerulean

Vivid Cerulean (#00AAEE) is a color with RGB(0, 170, 238) and HSL(197.14°, 100%, 93.33%). 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 #EE4400, which creates strong contrast. Its triadic palette includes #EE00AA and #AAEE00. The name comes from caeruleus (Latin), vividus (Latin, root for 'vivid') (Latin (for 'cerulean'), English (for 'vivid')).

  • HEX: #00AAEE
  • RGB: 0, 170, 238
  • HSL: 197.14°, 100%, 93.33%
  • Mood: Playful
  • Style: Neon, Cool
  • Use case: Text, Button, Background
  • Complementary color: #EE4400
  • Triadic colors: #EE00AA, #AAEE00
  • The name comes from caeruleus (Latin), vividus (Latin, root for 'vivid') (Latin (for 'cerulean'), English (for 'vivid')).

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 #00AAEE from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Cool

Accessibility Simulation

Deuteranopia #9191EF
Protanopia #A1A1EE
Tritanopia #00B4B4
Achromatopsia #A0A0A0

Frequently Asked Questions

Vivid Cerulean (#00AAEE) is a color with RGB(0, 170, 238) and HSL(197.14°, 100%, 93.33%).

#00AAEE pairs strongly with #EE4400 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#00AAEE is commonly associated with Playful.

The name Vivid Cerulean is linked to caeruleus (Latin), vividus (Latin, root for 'vivid') from Latin (for 'cerulean'), English (for 'vivid'), meaning Caeruleus: dark blue, sky-blue, azure. Vividus: lively, animated, spirited (root for 'vivid' meaning intense, strong)..

Name, History & Etymology

Origin Word caeruleus (Latin), vividus (Latin, root for 'vivid')
Meaning Caeruleus: dark blue, sky-blue, azure. Vividus: lively, animated, spirited (root for 'vivid' meaning intense, strong).
Language Latin (for 'cerulean'), English (for 'vivid')
First Recorded Use 17th Century (for 'cerulean' in English), 17th Century (for 'vivid' in English)

History

While 'cerulean' has a long history as a descriptor for sky-blue or deep blue, and 'vivid' for intensity, their combination 'Vivid Cerulean' is not a historically recognized color name with a specific origin story like 'ultramarine' or 'indigo'. It's a modern descriptive term used to specify a particularly bright and intense shade of cerulean blue. Cerulean blue pigment itself was first synthesized in the early 19th century (1805 by A. Werner in Switzerland, commercially available later in the century). The color #00aaee is a bright, slightly greenish-blue, fitting the 'vivid cerulean' description.

First Recorded Use

The word 'cerulean' entered English in the early 17th century. 'Vivid' also entered English around the same time. The specific compound 'Vivid Cerulean' as a named color is likely a much more recent, descriptive coinage rather than a historical term.

Cultural Associations

The color cerulean often evokes images of clear skies, deep oceans, and a sense of calm or vastness. 'Vivid' amplifies these associations, suggesting a particularly striking and vibrant natural scene. In art, a vivid cerulean might be used to depict bright skies, tropical waters, or energetic elements. It's a color that can convey both tranquility and dynamism due to its brightness.

Similar Named Colors

Picton Blue #45B1E8 ΔE 3.16
Carolina Blue #56A0D3 ΔE 5.16
Cyan (process) #00B7EB ΔE 5.84
Deep Sky Blue #00BFFF ΔE 6.09

Code Snippets

/* Background */
.element {
    background-color: #00AAEE;
}

/* Text */
.element {
    color: #00AAEE;
}

/* Border */
.element {
    border: 1px solid #00AAEE;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #00AAEE,
        #FFE7DD
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #00AAEE,
        #FFE7DD
    );
}

// SCSS variable
$vivid-cerulean: #00AAEE;

// With RGB channels (useful for rgba() usage)
$vivid-cerulean-r: 0;
$vivid-cerulean-g: 170;
$vivid-cerulean-b: 238;

// Usage
.element {
    background-color: $vivid-cerulean;
    color: rgba($vivid-cerulean-r, $vivid-cerulean-g, $vivid-cerulean-b, 0.8);
}