Zomp
HEX: #39A78E | Modern Palette
Color Specifications
#39A78E
57, 167, 142
166°, 65% ,65%
65.87, 0, 14.97, 34.51
About Zomp
Zomp (#39A78E) is a color with RGB(57, 167, 142) and HSL(166.36°, 65.87%, 65.49%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #A73952, which creates strong contrast. Its triadic palette includes #8E39A7 and #A78E39. The name comes from Zomp (English).
- HEX: #39A78E
- RGB: 57, 167, 142
- HSL: 166.36°, 65.87%, 65.49%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #A73952
- Triadic colors: #8E39A7, #A78E39
- The name comes from Zomp (English).
Live Components
Color Palettes
Zomp #39A78E 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
Zomp #39A78E pairs with #A73952 as its complementary color, and #8E39A7 and #A78E39 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
This color name is a modern invention, not derived from historical pigments or natural phenomena. Its creation reflects the increasing need for precise, distinct color nomenclature in digital and design contexts. It gained recognition through its inclusion in various digital color palettes and web standards. The name itself is a portmanteau or an invented word, designed to be unique and memorable.
First Recorded Use
The color 'Zomp' was officially introduced as part of the Xona.com Color List, a comprehensive online color dictionary, around the early 2000s.
Cultural Associations
As a relatively new color name, 'Zomp' lacks deep historical or cultural roots. Its primary cultural impact is within digital design and web development communities, where it serves as a specific identifier for a particular shade of green. It represents a modern trend in color naming, moving away from traditional descriptive terms towards more abstract or invented labels.
Code Snippets
/* Background */
.element {
background-color: #39A78E;
}
/* Text */
.element {
color: #39A78E;
}
/* Border */
.element {
border: 1px solid #39A78E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#39A78E,
#E16D87
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#39A78E,
#E16D87
);
}
// SCSS variable
$zomp: #39A78E;
// With RGB channels (useful for rgba() usage)
$zomp-r: 57;
$zomp-g: 167;
$zomp-b: 142;
// Usage
.element {
background-color: $zomp;
color: rgba($zomp-r, $zomp-g, $zomp-b, 0.8);
}