Spanish Green
HEX: #009150 | Modern Palette
Color Specifications
#009150
0, 145, 80
153°, 100% ,56%
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
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 #009150 from deepest shade to lightest tint.
Frequently Asked Questions
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);
}