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
Medium Sea Green #3CB371 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 Sea Green #3CB371 pairs with #B33C7E as its complementary color, and #713CB3 and #B3713C in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}