Zomp

HEX: #39A78E | Modern Palette

On White
2.96:1
FAIL
On Black
7.09:1
PASS

Color Specifications

HEX
#39A78E
RGB
57, 167, 142
HSL
166°, 65% ,65%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Playful
Style
Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #929290
Protanopia #9F9F8E
Tritanopia #43A4A4
Achromatopsia #969696

Frequently Asked Questions

Zomp (#39A78E) is a color with RGB(57, 167, 142) and HSL(166.36°, 65.87%, 65.49%).

#39A78E pairs strongly with #A73952 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#39A78E is suitable for Text, Button, Accent and works well with Cool styles.

#39A78E is commonly associated with Playful.

The name Zomp is linked to Zomp from English, meaning A neologism created for a specific color standard, likely evoking a vibrant, somewhat artificial green..

Name, History & Etymology

Origin Word Zomp
Meaning A neologism created for a specific color standard, likely evoking a vibrant, somewhat artificial green.
Language English
First Recorded Use 21st Century

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.

Similar Named Colors

Persian Green #00A693 ΔE 3.11
Jungle Green #29AB87 ΔE 3.39
Keppel #3AB09E ΔE 3.81
Paolo Veronese Green #009B7D ΔE 4.92

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);
}