Office Green
HEX: #008000 | Modern Palette
Color Specifications
#008000
0, 128, 0
120°, 100% ,50%
100, 0, 100, 49.8
About Office Green
Office Green (#008000) is a color with RGB(0, 128, 0) and HSL(120°, 100%, 50.2%). 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 Purple (#800080), which creates strong contrast. Its triadic palette includes Navy Blue (#000080) and Maroon (#800000). The name comes from Office Green (English).
- HEX: #008000
- RGB: 0, 128, 0
- HSL: 120°, 100%, 50.2%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: Purple (#800080)
- Triadic colors: Navy Blue (#000080), Maroon (#800000)
- The name comes from Office 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 #008000 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Green has long been associated with nature, growth, and tranquility. In the context of offices, particularly from the late 19th century onwards, there was a conscious effort to create environments that were both professional and conducive to work. Darker, muted greens, like 'Office Green,' were popular choices for walls, carpets, and even desk blotters. This was partly due to their perceived calming effect, their ability to hide dirt (a practical consideration), and their association with stability and prosperity. The color also became a staple in government and corporate settings, further solidifying its 'office' identity. It was a common color for filing cabinets, typewriters, and other office equipment before the widespread adoption of lighter, more neutral tones in the latter half of the 20th century.
First Recorded Use
The specific term 'Office Green' as a named color likely emerged as color standardization became more common in manufacturing and design, particularly for items like office furniture, stationery, and wall paints. While green itself has been used for centuries, the 'office' qualifier points to a period when distinct color palettes for specific environments became prevalent.
Cultural Associations
In Western cultures, green often symbolizes nature, money, luck, and envy. 'Office Green' specifically leans into the aspects of nature (bringing the outdoors in), stability, and professionalism. It can evoke a sense of tradition and reliability. While less common in modern, minimalist office designs, it still holds a nostalgic charm and can be found in more traditional or vintage-inspired office aesthetics. It's a color that suggests a serious, focused, and perhaps slightly conservative environment.
Code Snippets
/* Background */
.element {
background-color: #008000;
}
/* Text */
.element {
color: #008000;
}
/* Border */
.element {
border: 1px solid #008000;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#008000,
#FF01FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#008000,
#FF01FF
);
}
// SCSS variable
$office-green: #008000;
// With RGB channels (useful for rgba() usage)
$office-green-r: 0;
$office-green-g: 128;
$office-green-b: 0;
// Usage
.element {
background-color: $office-green;
color: rgba($office-green-r, $office-green-g, $office-green-b, 0.8);
}