Sea Green
HEX: #2E8B57 | Modern Palette
Color Specifications
#2E8B57
46, 139, 87
146°, 66% ,54%
66.91, 0, 37.41, 45.49
About Sea Green
Sea Green (#2E8B57) is a color with RGB(46, 139, 87) and HSL(146.45°, 66.91%, 54.51%). In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #8B2E62, which creates strong contrast. Its triadic palette includes #572E8B and #8B572E. The name comes from Sea Green (English).
- HEX: #2E8B57
- RGB: 46, 139, 87
- HSL: 146.45°, 66.91%, 54.51%
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #8B2E62
- Triadic colors: #572E8B, #8B572E
- The name comes from Sea Green (English).
Live Components
Color Palettes
Sea Green #2E8B57 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
Sea Green #2E8B57 pairs with #8B2E62 as its complementary color, and #572E8B and #8B572E in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The term 'sea green' has been used to describe a color since at least the late 17th century. It is a compound color name, directly referencing the natural world for its description. The color itself is a shade of green with a noticeable blue tint, evoking the appearance of the ocean. It has been consistently used in art, fashion, and interior design to bring a sense of calm and nature.
First Recorded Use
1670
Cultural Associations
Sea green is often associated with tranquility, nature, freshness, and the ocean. It can evoke feelings of peace and serenity. In various cultures, green is linked to growth, renewal, and fertility, and the 'sea' modifier adds a dimension of depth and natural beauty. It's a popular color for spaces intended for relaxation.
Code Snippets
/* Background */
.element {
background-color: #2E8B57;
}
/* Text */
.element {
color: #2E8B57;
}
/* Border */
.element {
border: 1px solid #2E8B57;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#2E8B57,
#D93D94
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#2E8B57,
#D93D94
);
}
// SCSS variable
$sea-green: #2E8B57;
// With RGB channels (useful for rgba() usage)
$sea-green-r: 46;
$sea-green-g: 139;
$sea-green-b: 87;
// Usage
.element {
background-color: $sea-green;
color: rgba($sea-green-r, $sea-green-g, $sea-green-b, 0.8);
}