Purple (Munsell)

HEX: #9F00C5 | Modern Palette

On White
6.40:1
PASS
On Black
3.28:1
FAIL

Color Specifications

HEX
#9F00C5
RGB
159, 0, 197
HSL
288°, 100% ,77%
CMYK
19.29, 100, 0, 22.75

About Purple (Munsell)

Purple (Munsell) (#9F00C5) is a color with RGB(159, 0, 197) and HSL(288.43°, 100%, 77.25%). It is commonly associated with Bold, Playful moods. In design, it fits Neon styles and is suitable for Text, Button, Accent. Its complementary color is #26C500, which creates strong contrast. Its triadic palette includes #C59F00 and #00C59F. The name comes from Purple (Munsell) (English).

  • HEX: #9F00C5
  • RGB: 159, 0, 197
  • HSL: 288.43°, 100%, 77.25%
  • Mood: Bold, Playful
  • Style: Neon
  • Use case: Text, Button, Accent
  • Complementary color: #26C500
  • Triadic colors: #C59F00, #00C59F
  • The name comes from Purple (Munsell) (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 #9F00C5 from deepest shade to lightest tint.

Color Characteristics

Mood
Bold Playful
Style
Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #5959C4
Protanopia #3737C5
Tritanopia #8E4B4B
Achromatopsia #5F5F5F

Frequently Asked Questions

Purple (Munsell) (#9F00C5) is a color with RGB(159, 0, 197) and HSL(288.43°, 100%, 77.25%).

#9F00C5 pairs strongly with #26C500 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#9F00C5 is suitable for Text, Button, Accent and works well with Neon styles.

#9F00C5 is commonly associated with Bold, Playful.

The name Purple (Munsell) is linked to Purple (Munsell) from English, meaning A specific shade of purple defined within the Munsell color system..

Name, History & Etymology

Origin Word Purple (Munsell)
Meaning A specific shade of purple defined within the Munsell color system.
Language English
First Recorded Use Early 20th Century

History

The Munsell color system was developed by Albert H. Munsell in the early 20th century as a scientific method for describing and specifying colors based on three dimensions: hue, value (lightness), and chroma (colorfulness). Unlike systems based on primary colors, Munsell aimed for perceptually uniform spacing of colors. 'Purple' in the Munsell system refers to a specific hue family. The exact shade '#9f00c5' would be a digital approximation of a Munsell Purple with a particular value and chroma. The Munsell system gained widespread adoption in various fields, including art, science, and industry, for its precision and consistency.

First Recorded Use

1905 (publication of 'A Color Notation' by Albert H. Munsell)

Cultural Associations

The Munsell system is primarily a technical and scientific color notation system, rather than a term with broad cultural usage outside of color science and design. However, the concept of 'purple' itself has rich cultural associations, often linked to royalty, spirituality, mystery, and creativity. The Munsell system provides a way to precisely define and communicate specific purples, which can then be used in various cultural contexts.

Similar Named Colors

Heliotrope Magenta #AA00BB ΔE 2.84
Dark Violet #9400D3 ΔE 2.96
Dark Orchid #9932CC ΔE 4.04
French Violet #8806CE ΔE 4.42

Code Snippets

/* Background */
.element {
    background-color: #9F00C5;
}

/* Text */
.element {
    color: #9F00C5;
}

/* Border */
.element {
    border: 1px solid #9F00C5;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #9F00C5,
        #A1FF8B
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #9F00C5,
        #A1FF8B
    );
}

// SCSS variable
$purple-(munsell): #9F00C5;

// With RGB channels (useful for rgba() usage)
$purple-(munsell)-r: 159;
$purple-(munsell)-g: 0;
$purple-(munsell)-b: 197;

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