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