Very Light Blue
HEX: #6666FF | Modern Palette
Color Specifications
#6666FF
102, 102, 255
240°, 60% ,100%
60, 60, 0, 0
About Very Light Blue
Very Light Blue (#6666FF) is a color with RGB(102, 102, 255) and HSL(240°, 60%, 100%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is Unmellow Yellow (#FFFF66), which creates strong contrast. Its triadic palette includes #FF6666 and #66FF66.
- HEX: #6666FF
- RGB: 102, 102, 255
- HSL: 240°, 60%, 100%
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: Unmellow Yellow (#FFFF66)
- Triadic colors: #FF6666, #66FF66
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 #6666FF from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#6666FF
#6666FF
#248787
#7A7A7A
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #6666FF;
}
/* Text */
.element {
color: #6666FF;
}
/* Border */
.element {
border: 1px solid #6666FF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#6666FF,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#6666FF,
#FFFFFF
);
}
// SCSS variable
$very-light-blue: #6666FF;
// With RGB channels (useful for rgba() usage)
$very-light-blue-r: 102;
$very-light-blue-g: 102;
$very-light-blue-b: 255;
// Usage
.element {
background-color: $very-light-blue;
color: rgba($very-light-blue-r, $very-light-blue-g, $very-light-blue-b, 0.8);
}