Viridian Green
HEX: #009698 | Modern Palette
Color Specifications
#009698
0, 150, 152
180°, 100% ,59%
100, 1.32, 0, 40.39
About Viridian Green
Viridian Green (#009698) is a color with RGB(0, 150, 152) and HSL(180.79°, 100%, 59.61%). It is commonly associated with Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #980200, which creates strong contrast. Its triadic palette includes #980096 and #969800. The name comes from viridis (Latin).
- HEX: #009698
- RGB: 0, 150, 152
- HSL: 180.79°, 100%, 59.61%
- Mood: Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #980200
- Triadic colors: #980096, #969800
- The name comes from viridis (Latin).
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 #009698 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Viridian green is a synthetic, hydrated chromium(III) oxide green pigment. It was first synthesized in France by Pannetier and Binet in 1838, but its composition was kept secret. Guignet, another French chemist, patented a slightly different process in 1859, making the pigment widely available. It quickly replaced the more toxic Emerald Green (Paris Green) due to its permanence, transparency, and non-toxicity. It became a staple for artists, particularly Impressionists and Post-Impressionists, for its vibrant, cool green hue.
First Recorded Use
1838 (as a pigment)
Cultural Associations
Viridian is often associated with nature, freshness, and tranquility due to its strong green color. In art, it's known for its ability to create deep shadows and vibrant foliage. It was a favorite of artists like Vincent van Gogh, who used it extensively in his landscapes and still lifes to depict the lushness of nature. Its transparency makes it excellent for glazing techniques.
Code Snippets
/* Background */
.element {
background-color: #009698;
}
/* Text */
.element {
color: #009698;
}
/* Border */
.element {
border: 1px solid #009698;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#009698,
#FF3431
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#009698,
#FF3431
);
}
// SCSS variable
$viridian-green: #009698;
// With RGB channels (useful for rgba() usage)
$viridian-green-r: 0;
$viridian-green-g: 150;
$viridian-green-b: 152;
// Usage
.element {
background-color: $viridian-green;
color: rgba($viridian-green-r, $viridian-green-g, $viridian-green-b, 0.8);
}