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