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