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