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
Office Green #008000 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Office Green #008000 pairs with Purple (#800080) as its complementary color, and Navy Blue (#000080) and Maroon (#800000) in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
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);
}