Pale Green
HEX: #98FB98 | Modern Palette
Color Specifications
#98FB98
152, 251, 152
120°, 39% ,98%
39.44, 0, 39.44, 1.57
About Pale Green
Pale Green (#98FB98) is a color with RGB(152, 251, 152) and HSL(120°, 39.44%, 98.43%). In design, it fits Cool styles and is suitable for Text, Background, Print. Its complementary color is #FB98FB, which creates strong contrast. Its triadic palette includes #9898FB and #FB9898. The name comes from Pale Green (English).
- HEX: #98FB98
- RGB: 152, 251, 152
- HSL: 120°, 39.44%, 98.43%
- Style: Cool
- Use case: Text, Background, Print
- Complementary color: #FB98FB
- Triadic colors: #9898FB, #FB9898
- The name comes from Pale Green (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 #98FB98 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#E4E49B
#F3F397
#AAF1F1
#E4E4E4
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'pale' colors has existed as long as colors themselves, referring to a lighter or less intense version of a hue. 'Green' as a color name is Old English (grēne) and Indo-European in origin, related to 'grow' and 'grass'. The combination 'pale green' describes a common natural occurrence (e.g., new leaves, certain minerals). Its use as a distinct color name, rather than just a description, solidified over centuries, particularly with the advent of standardized color systems and widespread color printing/digital displays. The specific hex code #98fb98 is a modern, precise definition within the sRGB color space.
First Recorded Use
While 'pale' and 'green' have ancient origins, their combination as a specific color descriptor likely became common as color vocabulary expanded and became more nuanced. Early uses would be descriptive in literature or art rather than a formally named color. The specific hex code #98fb98 is a modern digital representation.
Cultural Associations
Pale green often evokes feelings of freshness, new beginnings, nature, tranquility, and health. It is frequently associated with spring, young plants, and sometimes with vintage aesthetics (e.g., mint green). In some cultures, lighter shades of green can symbolize peace or growth. It's a common color in interior design for creating a calming atmosphere and in fashion for its gentle and versatile appeal.
Code Snippets
/* Background */
.element {
background-color: #98FB98;
}
/* Text */
.element {
color: #98FB98;
}
/* Border */
.element {
border: 1px solid #98FB98;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#98FB98,
#FDF9FD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#98FB98,
#FDF9FD
);
}
// SCSS variable
$pale-green: #98FB98;
// With RGB channels (useful for rgba() usage)
$pale-green-r: 152;
$pale-green-g: 251;
$pale-green-b: 152;
// Usage
.element {
background-color: $pale-green;
color: rgba($pale-green-r, $pale-green-g, $pale-green-b, 0.8);
}