Pastel Green
HEX: #77DD77 | Modern Palette
Color Specifications
#77DD77
119, 221, 119
120°, 46% ,86%
46.15, 0, 46.15, 13.33
About Pastel Green
Pastel Green (#77DD77) is a color with RGB(119, 221, 119) and HSL(120°, 46.15%, 86.67%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #DD77DD, which creates strong contrast. Its triadic palette includes #7777DD and #DD7777.
- HEX: #77DD77
- RGB: 119, 221, 119
- HSL: 120°, 46.15%, 86.67%
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #DD77DD
- Triadic colors: #7777DD, #DD7777
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 #77DD77 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#C6C67A
#D5D576
#8BD4D4
#C7C7C7
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #77DD77;
}
/* Text */
.element {
color: #77DD77;
}
/* Border */
.element {
border: 1px solid #77DD77;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#77DD77,
#EDCDED
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#77DD77,
#EDCDED
);
}
// SCSS variable
$pastel-green: #77DD77;
// With RGB channels (useful for rgba() usage)
$pastel-green-r: 119;
$pastel-green-g: 221;
$pastel-green-b: 119;
// Usage
.element {
background-color: $pastel-green;
color: rgba($pastel-green-r, $pastel-green-g, $pastel-green-b, 0.8);
}