Office Green

HEX: #008000 | Modern Palette

On White
5.14:1
PASS
On Black
4.09:1
FAIL

Color Specifications

HEX
#008000
RGB
0, 128, 0
HSL
120°, 100% ,50%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Bold
Style
Vivid Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #6D6D0F
Protanopia #797900
Tritanopia #2F7878
Achromatopsia #6D6D6D

Frequently Asked Questions

Office Green (#008000) is a color with RGB(0, 128, 0) and HSL(120°, 100%, 50.2%).

#008000 pairs strongly with Purple (#800080) as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#008000 is suitable for Text, Button, Accent and works well with Vivid, Cool styles.

#008000 is commonly associated with Bold.

The name Office Green is linked to Office Green from English, meaning A shade of green commonly associated with office environments, often evoking a sense of nature, stability, and professionalism..

Name, History & Etymology

Origin Word Office Green
Meaning A shade of green commonly associated with office environments, often evoking a sense of nature, stability, and professionalism.
Language English
First Recorded Use Late 19th to Early 20th Century

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.

Similar Named Colors

Napier Green #2A8000 ΔE 2.22
India Green #138808 ΔE 2.95
Forest Green #228B22 ΔE 4.57
Islamic Green #009000 ΔE 5.72

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);
}