Vivid Sky Blue
HEX: #00CCFF | Modern Palette
Color Specifications
#00CCFF
0, 204, 255
192°, 100% ,100%
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
Color Palettes
Vivid Sky Blue #00CCFF 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
Vivid Sky Blue #00CCFF pairs with #FF3300 as its complementary color, and #FF00CC and Fluorescent Yellow (#CCFF00) in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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.
Frequently Asked Questions
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);
}