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
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 #00FA9A from deepest shade to lightest tint.
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);
}