Vivid Sky Blue

HEX: #00CCFF | Modern Palette

On White
1.90:1
FAIL
On Black
11.08:1
PASS

Color Specifications

HEX
#00CCFF
RGB
0, 204, 255
HSL
192°, 100% ,100%
CMYK
100, 20, 0, 0

About Vivid Sky Blue

Vivid Sky Blue (#00CCFF) is a color with RGB(0, 204, 255) and HSL(192°, 100%, 100%). 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 #FF3300, which creates strong contrast. Its triadic palette includes #FF00CC and Fluorescent Yellow (#CCFF00).

  • HEX: #00CCFF
  • RGB: 0, 204, 255
  • HSL: 192°, 100%, 100%
  • Mood: Playful
  • Style: Neon, Cool
  • Use case: Text, Button, Background
  • Complementary color: #FF3300
  • Triadic colors: #FF00CC, Fluorescent Yellow (#CCFF00)

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

Color Characteristics

Mood
Playful
Style
Neon Cool

Accessibility Simulation

Deuteranopia #AFAFFF
Protanopia #C2C2FF
Tritanopia #00D3D3
Achromatopsia #BCBCBC

Frequently Asked Questions

Vivid Sky Blue (#00CCFF) is a color with RGB(0, 204, 255) and HSL(192°, 100%, 100%).

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

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

#00CCFF is commonly associated with Playful.

Similar Named Colors

Spiro Disco Ball #0FC0FC ΔE 4.19
Deep Sky Blue #00BFFF ΔE 5.04
Cyan (process) #00B7EB ΔE 5.53
Pale Cyan #87D3F8 ΔE 6.95

Code Snippets

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

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

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

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

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

// SCSS variable
$vivid-sky-blue: #00CCFF;

// With RGB channels (useful for rgba() usage)
$vivid-sky-blue-r: 0;
$vivid-sky-blue-g: 204;
$vivid-sky-blue-b: 255;

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