Dark Blue-gray
HEX: #666699 | Modern Palette
Color Specifications
#666699
102, 102, 153
240°, 33% ,60%
33.33, 33.33, 0, 40
About Dark Blue-gray
Dark Blue-gray (#666699) is a color with RGB(102, 102, 153) and HSL(240°, 33.33%, 60%). It is commonly associated with Calm moods. In design, it fits Muted, Cool styles and is suitable for Text, Print. Its complementary color is #999966, which creates strong contrast. Its triadic palette includes Copper Rose (#996666) and #669966.
- HEX: #666699
- RGB: 102, 102, 153
- HSL: 240°, 33.33%, 60%
- Mood: Calm
- Style: Muted, Cool
- Use case: Text, Print
- Complementary color: #999966
- Triadic colors: Copper Rose (#996666), #669966
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 #666699 from deepest shade to lightest tint.
Frequently Asked Questions
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #666699;
}
/* Text */
.element {
color: #666699;
}
/* Border */
.element {
border: 1px solid #666699;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#666699,
#BBBB77
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#666699,
#BBBB77
);
}
// SCSS variable
$dark-blue-gray: #666699;
// With RGB channels (useful for rgba() usage)
$dark-blue-gray-r: 102;
$dark-blue-gray-g: 102;
$dark-blue-gray-b: 153;
// Usage
.element {
background-color: $dark-blue-gray;
color: rgba($dark-blue-gray-r, $dark-blue-gray-g, $dark-blue-gray-b, 0.8);
}