Light Sea Green
HEX: #20B2AA | Modern Palette
Color Specifications
#20B2AA
32, 178, 170
176°, 82% ,69%
82.02, 0, 4.49, 30.2
About Light Sea Green
Light Sea Green (#20B2AA) is a color with RGB(32, 178, 170) and HSL(176.71°, 82.02%, 69.8%). It is commonly associated with Bold, Playful moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #B22028, which creates strong contrast. Its triadic palette includes #AA20B2 and #B2AA20. The name comes from Light Sea Green (English).
- HEX: #20B2AA
- RGB: 32, 178, 170
- HSL: 176.71°, 82.02%, 69.8%
- Mood: Bold, Playful
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #B22028
- Triadic colors: #AA20B2, #B2AA20
- The name comes from Light Sea Green (English).
Live Components
Color Palettes
Light Sea Green #20B2AA 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
Light Sea Green #20B2AA pairs with #B22028 as its complementary color, and #AA20B2 and #B2AA20 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 concept of 'sea green' as a color has existed for centuries, describing the varying hues of the ocean. Adding 'light' specifies a particular intensity. The standardization of such descriptive color names became more prevalent with the advent of industrial chemistry and the need for precise color communication in manufacturing and design. Its inclusion in digital color standards like X11 (and subsequently CSS) cemented its status as a distinct, named color in the digital realm.
First Recorded Use
While the individual words 'light', 'sea', and 'green' have ancient origins, the specific compound color name 'Light Sea Green' as a distinct, recognized color in art, fashion, or industry likely emerged in the late 19th or early 20th century with the proliferation of standardized color systems and commercial dyes. It was officially recognized by X11 in 1987.
Cultural Associations
Colors associated with the sea often evoke feelings of tranquility, freshness, and nature. 'Light Sea Green' specifically might suggest clear, shallow waters, tropical lagoons, or a serene coastal environment. It's a popular color in interior design for creating calming spaces, and in fashion for spring/summer collections. It can also be associated with health and well-being due to its natural connotations.
Code Snippets
/* Background */
.element {
background-color: #20B2AA;
}
/* Text */
.element {
color: #20B2AA;
}
/* Border */
.element {
border: 1px solid #20B2AA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#20B2AA,
#F1737A
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#20B2AA,
#F1737A
);
}
// SCSS variable
$light-sea-green: #20B2AA;
// With RGB channels (useful for rgba() usage)
$light-sea-green-r: 32;
$light-sea-green-g: 178;
$light-sea-green-b: 170;
// Usage
.element {
background-color: $light-sea-green;
color: rgba($light-sea-green-r, $light-sea-green-g, $light-sea-green-b, 0.8);
}