Pine Green
HEX: #01796F | Modern Palette
Color Specifications
#01796F
1, 121, 111
175°, 99% ,47%
99.17, 0, 8.26, 52.55
About Pine Green
Pine Green (#01796F) is a color with RGB(1, 121, 111) and HSL(175°, 99.17%, 47.45%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #79010B, which creates strong contrast. Its triadic palette includes #6F0179 and #796F01. The name comes from Pine Green (English).
- HEX: #01796F
- RGB: 1, 121, 111
- HSL: 175°, 99.17%, 47.45%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #79010B
- Triadic colors: #6F0179, #796F01
- The name comes from Pine 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 #01796F from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color green has been significant throughout human history, often associated with nature, fertility, growth, and renewal. In ancient Egypt, green represented regeneration. In medieval Europe, it was linked to nature and sometimes to evil or jealousy. The specific shade 'Pine Green' draws its inspiration directly from the deep, often bluish-green hue of pine needles, particularly those of mature pine trees. Its popularity as a named color grew with the advent of standardized color charts and widespread use in various industries, from paint to textiles. It evokes a sense of the outdoors, forests, and natural tranquility.
First Recorded Use
The specific naming 'Pine Green' as a distinct color likely emerged as color standardization and naming became more common in art, fashion, and industrial design. While green shades inspired by nature have always existed, the precise 'Pine Green' designation points to a period where more nuanced color vocabulary was developing.
Cultural Associations
Pine Green is widely recognized as a natural, earthy tone. It is often used to evoke feelings of nature, stability, and tradition. In fashion, it can be seen as sophisticated and classic. In interior design, it brings a sense of calm and connection to the outdoors. It's a common color for outdoor gear, military uniforms (especially in forest environments), and holiday decorations, particularly around Christmas, where pine trees are central.
Code Snippets
/* Background */
.element {
background-color: #01796F;
}
/* Text */
.element {
color: #01796F;
}
/* Border */
.element {
border: 1px solid #01796F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#01796F,
#F10115
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#01796F,
#F10115
);
}
// SCSS variable
$pine-green: #01796F;
// With RGB channels (useful for rgba() usage)
$pine-green-r: 1;
$pine-green-g: 121;
$pine-green-b: 111;
// Usage
.element {
background-color: $pine-green;
color: rgba($pine-green-r, $pine-green-g, $pine-green-b, 0.8);
}