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