Pistachio
HEX: #93C572 | Modern Palette
Color Specifications
#93C572
147, 197, 114
96°, 42% ,77%
25.38, 0, 42.13, 22.75
About Pistachio
Pistachio (#93C572) is a color with RGB(147, 197, 114) and HSL(96.14°, 42.13%, 77.25%). It is commonly associated with Calm moods. In design, it fits Cool styles and is suitable for Text, Print. Its complementary color is #A472C5, which creates strong contrast. Its triadic palette includes #7293C5 and #C57293. The name comes from پسته (pista) (Persian).
- HEX: #93C572
- RGB: 147, 197, 114
- HSL: 96.14°, 42.13%, 77.25%
- Mood: Calm
- Style: Cool
- Use case: Text, Print
- Complementary color: #A472C5
- Triadic colors: #7293C5, #C57293
- The name comes from پسته (pista) (Persian).
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 #93C572 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The pistachio tree is native to the Middle East and Central Asia. Archaeological evidence suggests pistachios were consumed as early as 7000 BCE in what is now Turkey. They were cultivated in Persia (modern-day Iran) for thousands of years and were considered a luxury food. The word 'pistachio' itself comes from the Persian 'pista'. From Persia, pistachios spread to the Mediterranean region, introduced to the Romans in the 1st century CE. They were mentioned in ancient Greek texts by Theophrastus in the 4th century BCE. The Arabic word 'fustuq' is also derived from the Persian. Pistachios were introduced to the United States in the mid-19th century, but large-scale commercial production didn't begin until the 1970s, primarily in California.
First Recorded Use
Around 7000 BCE (cultivation evidence), 4th century BCE (Greek texts)
Cultural Associations
Pistachios hold significant cultural importance in many Middle Eastern and Mediterranean cuisines. They are a staple in desserts like baklava, halva, and various pastries, and are also used in savory dishes, particularly in Iranian and Indian cooking. In some cultures, they symbolize wealth and good fortune. The 'open-mouth' appearance of a split pistachio shell is often seen as a natural smile. They are a popular snack during holidays and celebrations.
Code Snippets
/* Background */
.element {
background-color: #93C572;
}
/* Text */
.element {
color: #93C572;
}
/* Border */
.element {
border: 1px solid #93C572;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#93C572,
#CAADDD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#93C572,
#CAADDD
);
}
// SCSS variable
$pistachio: #93C572;
// With RGB channels (useful for rgba() usage)
$pistachio-r: 147;
$pistachio-g: 197;
$pistachio-b: 114;
// Usage
.element {
background-color: $pistachio;
color: rgba($pistachio-r, $pistachio-g, $pistachio-b, 0.8);
}