Deep Space Sparkle
HEX: #4A646C | Modern Palette
Color Specifications
#4A646C
74, 100, 108
194°, 31% ,42%
31.48, 7.41, 0, 57.65
About Deep Space Sparkle
Deep Space Sparkle (#4A646C) is a color with RGB(74, 100, 108) and HSL(194.12°, 31.48%, 42.35%). It is commonly associated with Calm moods. In design, it fits Muted, Cool styles and is suitable for Text, Print. Its complementary color is #6C524A, which creates strong contrast. Its triadic palette includes #6C4A64 and #646C4A. The name comes from Deep Space Sparkle (English).
- HEX: #4A646C
- RGB: 74, 100, 108
- HSL: 194.12°, 31.48%, 42.35%
- Mood: Calm
- Style: Muted, Cool
- Use case: Text, Print
- Complementary color: #6C524A
- Triadic colors: #6C4A64, #646C4A
- The name comes from Deep Space Sparkle (English).
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 #4A646C from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Deep Space Sparkle is a color that was introduced by Crayola in 2001 as part of their 'Metallic FX' crayon set. It is a dark, muted teal or blue-green color with a subtle shimmer effect, intended to evoke the appearance of distant galaxies or cosmic dust. The name itself combines 'Deep Space' to suggest its dark, cosmic quality, and 'Sparkle' to denote its metallic or shimmering characteristic. It has remained a part of various Crayola product lines since its introduction.
First Recorded Use
Early 2000s (specifically 2001 for Crayola)
Cultural Associations
As a Crayola color, 'Deep Space Sparkle' is primarily recognized within the context of art supplies and childhood creativity in Western cultures, particularly the United States. Its name, like many Crayola colors, aims to be evocative and imaginative, appealing to children and artists. The 'space' theme is common in popular culture, and this color taps into that fascination with the cosmos.
Code Snippets
/* Background */
.element {
background-color: #4A646C;
}
/* Text */
.element {
color: #4A646C;
}
/* Border */
.element {
border: 1px solid #4A646C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#4A646C,
#8E5A4A
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#4A646C,
#8E5A4A
);
}
// SCSS variable
$deep-space-sparkle: #4A646C;
// With RGB channels (useful for rgba() usage)
$deep-space-sparkle-r: 74;
$deep-space-sparkle-g: 100;
$deep-space-sparkle-b: 108;
// Usage
.element {
background-color: $deep-space-sparkle;
color: rgba($deep-space-sparkle-r, $deep-space-sparkle-g, $deep-space-sparkle-b, 0.8);
}