Spanish Viridian
HEX: #007F5C | Modern Palette
Color Specifications
#007F5C
0, 127, 92
163°, 100% ,49%
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
Color Palettes
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.
Frequently Asked Questions
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);
}