Space Cadet
HEX: #1D2951 | Modern Palette
Color Specifications
#1D2951
29, 41, 81
226°, 64% ,31%
64.2, 49.38, 0, 68.24
About Space Cadet
Space Cadet (#1D2951) is a color with RGB(29, 41, 81) and HSL(226.15°, 64.2%, 31.76%). It is commonly associated with Luxury moods. In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #51451D, which creates strong contrast. Its triadic palette includes #511D29 and #29511D. The name comes from Space Cadet (English).
- HEX: #1D2951
- RGB: 29, 41, 81
- HSL: 226.15°, 64.2%, 31.76%
- Mood: Luxury
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #51451D
- Triadic colors: #511D29, #29511D
- The name comes from Space Cadet (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 #1D2951 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The phrase 'Space Cadet' originated from Robert Heinlein's 1948 novel 'Space Cadet,' which popularized the concept of young individuals training for space missions. This term subsequently entered popular culture, often used to describe someone dreamy or disconnected. Its adoption as a color name likely reflects a modern association with the deep blues and purples often depicted in space imagery.
First Recorded Use
The term 'Space Cadet' gained prominence in the mid-20th century, particularly with the rise of science fiction and space exploration narratives. Its use as a specific color name is more recent, likely emerging in digital color palettes.
Cultural Associations
The term 'Space Cadet' carries connotations of futuristic exploration, scientific ambition, and sometimes a whimsical detachment from earthly concerns. In popular culture, it evokes images of starry nights and the vastness of the cosmos. The color itself often appears in designs aiming for a sophisticated, technological, or otherworldly aesthetic.
Code Snippets
/* Background */
.element {
background-color: #1D2951;
}
/* Text */
.element {
color: #1D2951;
}
/* Border */
.element {
border: 1px solid #1D2951;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#1D2951,
#856D1D
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#1D2951,
#856D1D
);
}
// SCSS variable
$space-cadet: #1D2951;
// With RGB channels (useful for rgba() usage)
$space-cadet-r: 29;
$space-cadet-g: 41;
$space-cadet-b: 81;
// Usage
.element {
background-color: $space-cadet;
color: rgba($space-cadet-r, $space-cadet-g, $space-cadet-b, 0.8);
}