Outer Space

HEX: #414A4C | Modern Palette

On White
9.10:1
PASS
On Black
2.31:1
FAIL

Color Specifications

HEX
#414A4C
RGB
65, 74, 76
HSL
190°, 14% ,29%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Calm
Style
Muted Cool

Accessibility Simulation

Deuteranopia #48484C
Protanopia #49494C
Tritanopia #414A4A
Achromatopsia #484848

Frequently Asked Questions

Outer Space (#414A4C) is a color with RGB(65, 74, 76) and HSL(190.91°, 14.47%, 29.8%).

#414A4C pairs strongly with #4C4341 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#414A4C is suitable for Text, Background, Border and works well with Muted, Cool styles.

#414A4C is commonly associated with Calm.

The name Outer Space is linked to Outer Space from English, meaning The region beyond Earth's atmosphere and celestial bodies..

Name, History & Etymology

Origin Word Outer Space
Meaning The region beyond Earth's atmosphere and celestial bodies.
Language English
First Recorded Use Early 20th Century

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

Arsenic #3B444B ΔE 3.65
Charcoal #36454F ΔE 4.81
Onyx #353839 ΔE 6.31
Davy Grey #555555 ΔE 6.43

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);
}