Dark Pastel Green

HEX: #03C03C | Modern Palette

On White
2.44:1
FAIL
On Black
8.61:1
PASS

Color Specifications

HEX
#03C03C
RGB
3, 192, 60
HSL
138°, 98% ,75%
CMYK
98.44, 0, 68.75, 24.71

About Dark Pastel Green

Dark Pastel Green (#03C03C) is a color with RGB(3, 192, 60) and HSL(138.1°, 98.44%, 75.29%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #C00387, which creates strong contrast. Its triadic palette includes #3C03C0 and #C03C03. The name comes from Dark Pastel Green (English).

  • HEX: #03C03C
  • RGB: 3, 192, 60
  • HSL: 138.1°, 98.44%, 75.29%
  • Mood: Bold, Playful
  • Style: Neon, Cool
  • Use case: Text, Button, Accent
  • Complementary color: #C00387
  • Triadic colors: #3C03C0, #C03C03
  • The name comes from Dark Pastel Green (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 #03C03C from deepest shade to lightest tint.

Color Characteristics

Mood
Bold Playful
Style
Neon Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #A5A543
Protanopia #B6B63A
Tritanopia #48B6B6
Achromatopsia #A6A6A6

Frequently Asked Questions

Dark Pastel Green (#03C03C) is a color with RGB(3, 192, 60) and HSL(138.1°, 98.44%, 75.29%).

#03C03C pairs strongly with #C00387 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#03C03C is suitable for Text, Button, Accent and works well with Neon, Cool styles.

#03C03C is commonly associated with Bold, Playful.

The name Dark Pastel Green is linked to Dark Pastel Green from English, meaning A shade of green that is both dark and has a pastel quality, implying a certain softness or desaturation compared to a vibrant pure green..

Name, History & Etymology

Origin Word Dark Pastel Green
Meaning A shade of green that is both dark and has a pastel quality, implying a certain softness or desaturation compared to a vibrant pure green.
Language English
First Recorded Use Late 20th Century

History

The concept of 'pastel' colors gained significant traction in art and fashion from the 18th century onwards, often associated with softness, femininity, and spring. 'Dark' colors have always been fundamental. The precise combination 'Dark Pastel Green' is a more recent refinement in color naming, driven by the need to distinguish specific shades in digital design, paint manufacturing, and fashion. It describes a green that is deep but not overly saturated, avoiding the brightness of a pure pastel while still retaining a muted quality. The hex code #03c03c is a specific digital representation of such a color.

First Recorded Use

The specific combination 'Dark Pastel Green' as a named color is likely a modern descriptor, emerging with the proliferation of digital color systems and more nuanced color naming conventions. 'Pastel green' would have existed earlier, and 'dark green' much earlier, but the specific compound is more recent.

Cultural Associations

Green, in general, is widely associated with nature, growth, renewal, and tranquility. Darker greens can evoke stability, wealth, and tradition (e.g., 'forest green,' 'emerald green'). Pastel colors often carry connotations of gentleness, youth, and calmness. The combination 'Dark Pastel Green' might therefore subtly suggest a mature yet gentle natural aesthetic, or a sophisticated take on a natural hue. It's less common in traditional symbolism than simpler greens but fits into modern aesthetics valuing nuanced and complex color descriptions.

Similar Named Colors

Vivid Malachite #00CC33 ΔE 3.48
Lime Green #32CD32 ΔE 4.28
Kelly Green #4CBB17 ΔE 5.20
Harlequin Green #46CB18 ΔE 5.78

Code Snippets

/* Background */
.element {
    background-color: #03C03C;
}

/* Text */
.element {
    color: #03C03C;
}

/* Border */
.element {
    border: 1px solid #03C03C;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #03C03C,
        #FE82D9
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #03C03C,
        #FE82D9
    );
}

// SCSS variable
$dark-pastel-green: #03C03C;

// With RGB channels (useful for rgba() usage)
$dark-pastel-green-r: 3;
$dark-pastel-green-g: 192;
$dark-pastel-green-b: 60;

// Usage
.element {
    background-color: $dark-pastel-green;
    color: rgba($dark-pastel-green-r, $dark-pastel-green-g, $dark-pastel-green-b, 0.8);
}