Medium Sea Green
HEX: #3CB371 | Modern Palette
Color Specifications
#3CB371
60, 179, 113
146°, 66% ,70%
66.48, 0, 36.87, 29.8
About Medium Sea Green
Medium Sea Green (#3CB371) is a color with RGB(60, 179, 113) and HSL(146.72°, 66.48%, 70.2%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #B33C7E, which creates strong contrast. Its triadic palette includes #713CB3 and #B3713C.
- HEX: #3CB371
- RGB: 60, 179, 113
- HSL: 146.72°, 66.48%, 70.2%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #B33C7E
- Triadic colors: #713CB3, #B3713C
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 #3CB371 from deepest shade to lightest tint.
Frequently Asked Questions
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #3CB371;
}
/* Text */
.element {
color: #3CB371;
}
/* Border */
.element {
border: 1px solid #3CB371;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#3CB371,
#E680B9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#3CB371,
#E680B9
);
}
// SCSS variable
$medium-sea-green: #3CB371;
// With RGB channels (useful for rgba() usage)
$medium-sea-green-r: 60;
$medium-sea-green-g: 179;
$medium-sea-green-b: 113;
// Usage
.element {
background-color: $medium-sea-green;
color: rgba($medium-sea-green-r, $medium-sea-green-g, $medium-sea-green-b, 0.8);
}