Purple (Munsell)
HEX: #9F00C5 | Modern Palette
Color Specifications
#9F00C5
159, 0, 197
288°, 100% ,77%
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
Color Palettes
Purple (Munsell) #9F00C5 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Purple (Munsell) #9F00C5 pairs with #26C500 as its complementary color, and #C59F00 and #00C59F in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}