Dark Pastel Green
HEX: #03C03C | Modern Palette
Color Specifications
#03C03C
3, 192, 60
138°, 98% ,75%
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
Color Palettes
Dark Pastel Green #03C03C 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
Dark Pastel Green #03C03C pairs with #C00387 as its complementary color, and #3C03C0 and #C03C03 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 '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.
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);
}