Spanish Green

HEX: #009150 | Modern Palette

On White
4.07:1
FAIL
On Black
5.17:1
PASS

Color Specifications

HEX
#009150
RGB
0, 145, 80
HSL
153°, 100% ,56%
CMYK
100, 0, 44.83, 43.14

About Spanish Green

Spanish Green (#009150) is a color with RGB(0, 145, 80) and HSL(153.1°, 100%, 56.86%). It is commonly associated with Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #910041, which creates strong contrast. Its triadic palette includes #500091 and #915000.

  • HEX: #009150
  • RGB: 0, 145, 80
  • HSL: 153.1°, 100%, 56.86%
  • Mood: Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #910041
  • Triadic colors: #500091, #915000

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 #009150 from deepest shade to lightest tint.

Color Characteristics

Mood
Bold
Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #7C7C53
Protanopia #8A8A4F
Tritanopia #2E8B8B
Achromatopsia #7E7E7E

Frequently Asked Questions

Spanish Green (#009150) is a color with RGB(0, 145, 80) and HSL(153.1°, 100%, 56.86%).

#009150 pairs strongly with #910041 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#009150 is commonly associated with Bold.

Similar Named Colors

Sea Green #2E8B57 ΔE 3.43
Shamrock Green #009E60 ΔE 4.59
Green-cyan #009966 ΔE 4.62
North Texas Green #059033 ΔE 5.22

Code Snippets

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

/* Text */
.element {
    color: #009150;
}

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #009150,
        #FF2386
    );
}

// SCSS variable
$spanish-green: #009150;

// With RGB channels (useful for rgba() usage)
$spanish-green-r: 0;
$spanish-green-g: 145;
$spanish-green-b: 80;

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