Purple Navy

HEX: #4E5180 | Modern Palette

On White
7.47:1
PASS
On Black
2.81:1
FAIL

Color Specifications

HEX
#4E5180
RGB
78, 81, 128
HSL
236°, 39% ,50%
CMYK
39.06, 36.72, 0, 49.8

About Purple Navy

Purple Navy (#4E5180) is a color with RGB(78, 81, 128) and HSL(236.4°, 39.06%, 50.2%). It is commonly associated with Calm moods. In design, it fits Cool styles and is suitable for Text, Logo, Print. Its complementary color is #807D4E, which creates strong contrast. Its triadic palette includes #804E51 and #51804E. The name comes from Purple Navy (English).

  • HEX: #4E5180
  • RGB: 78, 81, 128
  • HSL: 236.4°, 39.06%, 50.2%
  • Mood: Calm
  • Style: Cool
  • Use case: Text, Logo, Print
  • Complementary color: #807D4E
  • Triadic colors: #804E51, #51804E
  • The name comes from Purple Navy (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 #4E5180 from deepest shade to lightest tint.

Color Characteristics

Mood
Calm
Style
Cool
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #505080
Protanopia #515180
Tritanopia #445959
Achromatopsia #555555

Frequently Asked Questions

Purple Navy (#4E5180) is a color with RGB(78, 81, 128) and HSL(236.4°, 39.06%, 50.2%).

#4E5180 pairs strongly with #807D4E as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#4E5180 is suitable for Text, Logo, Print and works well with Cool styles.

#4E5180 is commonly associated with Calm.

The name Purple Navy is linked to Purple Navy from English, meaning A dark shade of blue with a significant purple undertone, reminiscent of a deep twilight sky or a very dark, rich plum..

Name, History & Etymology

Origin Word Purple Navy
Meaning A dark shade of blue with a significant purple undertone, reminiscent of a deep twilight sky or a very dark, rich plum.
Language English
First Recorded Use Late 20th Century

History

The term 'navy blue' originated from the uniform color of the British Royal Navy in 1748. It became a popular color for uniforms and formal wear due to its practicality and perceived sophistication. 'Purple' has a long and rich history, often associated with royalty, wealth, and spirituality due to the rarity and cost of its dyes in ancient times. The combination 'Purple Navy' is a modern descriptor, blending the seriousness and depth of navy with the richness and complexity of purple. It's not a historically significant color name in the way 'Tyrian Purple' or 'Prussian Blue' are, but rather a descriptive term for a specific hue that sits between traditional navy and a deep purple.

First Recorded Use

While 'navy' as a color has existed for centuries, and 'purple' for millennia, the specific compound 'Purple Navy' as a distinct color name likely emerged with the advent of digital color systems and more nuanced color naming conventions, probably in the late 20th century (1980s-1990s) to describe specific hex codes or paint swatches.

Cultural Associations

This color evokes a sense of sophistication, depth, and perhaps a touch of mystery. It can be seen as a more creative or less conventional alternative to traditional navy blue, offering a subtle hint of individuality without being overly bold. It's often used in fashion, interior design, and branding to convey elegance, trustworthiness, and a modern sensibility. The purple undertone can add a calming or even spiritual quality, depending on the context.

Similar Named Colors

Independence #4C516D ΔE 5.53
Cyber Grape #58427C ΔE 7.25
Liberty #545AA7 ΔE 7.43
Dark Slate Blue #483D8B ΔE 8.02

Code Snippets

/* Background */
.element {
    background-color: #4E5180;
}

/* Text */
.element {
    color: #4E5180;
}

/* Border */
.element {
    border: 1px solid #4E5180;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #4E5180,
        #B2AC4E
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #4E5180,
        #B2AC4E
    );
}

// SCSS variable
$purple-navy: #4E5180;

// With RGB channels (useful for rgba() usage)
$purple-navy-r: 78;
$purple-navy-g: 81;
$purple-navy-b: 128;

// Usage
.element {
    background-color: $purple-navy;
    color: rgba($purple-navy-r, $purple-navy-g, $purple-navy-b, 0.8);
}