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
Very Light Blue #6666FF 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
Very Light Blue #6666FF pairs with Unmellow Yellow (#FFFF66) as its complementary color, and #FF6666 and #66FF66 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Shades & Tints
The shade and tint range for Very Light Blue #6666FF moves from dark #00001A tones through the base color to lighter #E6E6FF tones, making it useful for depth, hierarchy, and background variation.
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);
}