Outer Space
HEX: #414A4C | Modern Palette
Color Specifications
#414A4C
65, 74, 76
190°, 14% ,29%
14.47, 2.63, 0, 70.2
About Outer Space
Outer Space (#414A4C) is a color with RGB(65, 74, 76) and HSL(190.91°, 14.47%, 29.8%). It is commonly associated with Calm moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #4C4341, which creates strong contrast. Its triadic palette includes #4C414A and #4A4C41. The name comes from Outer Space (English).
- HEX: #414A4C
- RGB: 65, 74, 76
- HSL: 190.91°, 14.47%, 29.8%
- Mood: Calm
- Style: Muted, Cool
- Use case: Text, Background, Border
- Complementary color: #4C4341
- Triadic colors: #4C414A, #4A4C41
- The name comes from Outer Space (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 #414A4C from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of space beyond Earth has existed for millennia, but the specific term 'outer space' gained prominence in the early 20th century. Early science fiction writers like H.G. Wells and Jules Verne explored themes of space travel, though they didn't always use the exact phrase. The Oxford English Dictionary cites its first use in 1842 in an astronomical context, but its popularization as a distinct realm for exploration and international law came much later. The 1901 use by Garrett P. Serviss in his novel 'Edison's Conquest of Mars' is often cited for popularizing the term in a science fiction context. The Space Race in the mid-20th century solidified its place in common parlance and international discourse.
First Recorded Use
1842 (concept), 1901 (term 'outer space')
Cultural Associations
Outer space holds immense cultural significance, representing the unknown, the future, and humanity's aspirations. It is a frequent setting for science fiction literature, films, and video games, exploring themes of alien life, interstellar travel, and humanity's place in the cosmos. The 'Space Race' between the US and USSR was a defining cultural and political event of the Cold War. It has inspired countless scientific endeavors, technological advancements, and philosophical reflections on our existence. The 'overview effect' experienced by astronauts viewing Earth from space has also become a significant cultural concept.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #414A4C;
}
/* Text */
.element {
color: #414A4C;
}
/* Border */
.element {
border: 1px solid #414A4C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#414A4C,
#574541
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#414A4C,
#574541
);
}
// SCSS variable
$outer-space: #414A4C;
// With RGB channels (useful for rgba() usage)
$outer-space-r: 65;
$outer-space-g: 74;
$outer-space-b: 76;
// Usage
.element {
background-color: $outer-space;
color: rgba($outer-space-r, $outer-space-g, $outer-space-b, 0.8);
}