Medium Spring Green
HEX: #00FA9A | Modern Palette
Color Specifications
#00FA9A
0, 250, 154
157°, 100% ,49%
100, 0, 38, 2
About Medium Spring Green
Medium Spring Green (#00FA9A) is a color with RGB(0, 250, 154) and HSL(157°, 100%, 49%). 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 #FA0060, which creates strong contrast. Its triadic palette includes #9A00FA and #FA9A00.
- HEX: #00FA9A
- RGB: 0, 250, 154
- HSL: 157°, 100%, 49%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #FA0060
- Triadic colors: #9A00FA, #FA9A00
Live Components
Color Palettes
Medium Spring Green #00FA9A 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
Medium Spring Green #00FA9A pairs with #FA0060 as its complementary color, and #9A00FA and #FA9A00 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: #00FA9A;
}
/* Text */
.element {
color: #00FA9A;
}
/* Border */
.element {
border: 1px solid #00FA9A;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#00FA9A,
#FA0060
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#00FA9A,
#FA0060
);
}
// SCSS variable
$medium-spring-green: #00FA9A;
// With RGB channels (useful for rgba() usage)
$medium-spring-green-r: 0;
$medium-spring-green-g: 250;
$medium-spring-green-b: 154;
// Usage
.element {
background-color: $medium-spring-green;
color: rgba($medium-spring-green-r, $medium-spring-green-g, $medium-spring-green-b, 0.8);
}