Spanish Viridian

HEX: #007F5C | Modern Palette

On White
5.01:1
PASS
On Black
4.19:1
FAIL

Color Specifications

HEX
#007F5C
RGB
0, 127, 92
HSL
163°, 100% ,49%
CMYK
100, 0, 27.56, 50.2

About Spanish Viridian

Spanish Viridian (#007F5C) is a color with RGB(0, 127, 92) and HSL(163.46°, 100%, 49.8%). 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 #7F0023, which creates strong contrast. Its triadic palette includes #5C007F and #7F5C00.

  • HEX: #007F5C
  • RGB: 0, 127, 92
  • HSL: 163.46°, 100%, 49.8%
  • Mood: Bold
  • Style: Vivid, Cool
  • Use case: Text, Button, Accent
  • Complementary color: #7F0023
  • Triadic colors: #5C007F, #7F5C00

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

Color Characteristics

Mood
Bold
Style
Vivid Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #6C6C5E
Protanopia #78785C
Tritanopia #1F7B7B
Achromatopsia #6F6F6F

Frequently Asked Questions

Spanish Viridian (#007F5C) is a color with RGB(0, 127, 92) and HSL(163.46°, 100%, 49.8%).

#007F5C pairs strongly with #7F0023 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#007F5C is commonly associated with Bold.

Similar Named Colors

Generic Viridian #007F66 ΔE 3.23
Amazon #3B7A57 ΔE 4.69
Tropical Rain Forest #00755E ΔE 4.87

Code Snippets

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

/* Text */
.element {
    color: #007F5C;
}

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #007F5C,
        #FE0046
    );
}

// SCSS variable
$spanish-viridian: #007F5C;

// With RGB channels (useful for rgba() usage)
$spanish-viridian-r: 0;
$spanish-viridian-g: 127;
$spanish-viridian-b: 92;

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