Green (NCS)

HEX: #009F6B | Modern Palette

On White
3.40:1
FAIL
On Black
6.17:1
PASS

Color Specifications

HEX
#009F6B
RGB
0, 159, 107
HSL
160°, 100% ,62%
CMYK
100, 0, 32.7, 37.65

About Green (NCS)

Green (NCS) (#009F6B) is a color with RGB(0, 159, 107) and HSL(160.38°, 100%, 62.35%). It is commonly associated with Bold, Playful moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #9F0034, which creates strong contrast. Its triadic palette includes #6B009F and #9F6B00. The name comes from Green (English).

  • HEX: #009F6B
  • RGB: 0, 159, 107
  • HSL: 160.38°, 100%, 62.35%
  • Mood: Bold, Playful
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #9F0034
  • Triadic colors: #6B009F, #9F6B00
  • The name comes from 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 #009F6B from deepest shade to lightest tint.

Color Characteristics

Mood
Bold Playful
Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #88886E
Protanopia #97976A
Tritanopia #2D9A9A
Achromatopsia #8B8B8B

Frequently Asked Questions

Green (NCS) (#009F6B) is a color with RGB(0, 159, 107) and HSL(160.38°, 100%, 62.35%).

#009F6B pairs strongly with #9F0034 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#009F6B is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#009F6B is commonly associated with Bold, Playful.

The name Green (NCS) is linked to Green from English, meaning The color between blue and yellow on the spectrum, evoked by light with a dominant wavelength of roughly 495–570 nm..

Name, History & Etymology

Origin Word Green
Meaning The color between blue and yellow on the spectrum, evoked by light with a dominant wavelength of roughly 495–570 nm.
Language English
First Recorded Use Old English

History

The word 'green' comes from the Old English 'grēne', which, like the German 'grün' and Dutch 'groen', has its roots in a Proto-Germanic word. This in turn comes from the Proto-Indo-European root '*ghre- ' meaning 'to grow, to be green'. This etymology directly links the color to vegetation, growth, and life. Throughout history, green has been associated with nature, fertility, and rebirth. In medieval times, it was often the color of merchants, bankers, and sometimes even lovers. It also held symbolic meaning in heraldry. The specific shade "Green (NCS)" refers to a color defined by the Natural Color System (NCS), a perceptual color model based on how humans see color, rather than on physical properties like wavelength. NCS aims to describe colors based on their similarity to six elementary colors: white, black, red, yellow, green, and blue.

First Recorded Use

Before 7th century (as 'grēne')

Cultural Associations

**Nature and Environment:** Universally associated with nature, plants, forests, and environmentalism. **Fertility and Growth:** Symbolizes fertility, growth, renewal, and spring. **Luck:** In some Western cultures, green is considered a lucky color (e.g., four-leaf clovers). **Money:** In the United States, green is strongly associated with money due to the color of dollar bills. **Islam:** Green is considered the traditional color of Islam, often seen in flags and religious texts, symbolizing paradise. **Safety:** Often used for 'go' signals, safety signs, and first aid. **Jealousy/Envy:** The phrase 'green with envy' or 'green-eyed monster' links the color to these negative emotions. **Ireland:** Strongly associated with Ireland, St. Patrick's Day, and its lush landscapes. **Health and Wellness:** Often used in branding for health products, organic foods, and wellness industries.

Similar Named Colors

Green-cyan #009966 ΔE 1.95
Shamrock Green #009E60 ΔE 2.40
Green (Munsell) #00A877 ΔE 3.06
Jade #00A86B ΔE 3.18

Code Snippets

/* Background */
.element {
    background-color: #009F6B;
}

/* Text */
.element {
    color: #009F6B;
}

/* Border */
.element {
    border: 1px solid #009F6B;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #009F6B,
        #FF3F7E
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #009F6B,
        #FF3F7E
    );
}

// SCSS variable
$green-(ncs): #009F6B;

// With RGB channels (useful for rgba() usage)
$green-(ncs)-r: 0;
$green-(ncs)-g: 159;
$green-(ncs)-b: 107;

// Usage
.element {
    background-color: $green-(ncs);
    color: rgba($green-(ncs)-r, $green-(ncs)-g, $green-(ncs)-b, 0.8);
}