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
Spanish Green #009150 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Spanish Green #009150 pairs with #910041 as its complementary color, and #500091 and #915000 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}