Bright Green
HEX: #66FF00 | Modern Palette
Color Specifications
#66FF00
102, 255, 0
96°, 100% ,100%
60, 0, 100, 0
About Bright Green
Bright Green (#66FF00) is a color with RGB(102, 255, 0) and HSL(96°, 100%, 100%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #9900FF, which creates strong contrast. Its triadic palette includes #0066FF and #FF0066.
- HEX: #66FF00
- RGB: 102, 255, 0
- HSL: 96°, 100%, 100%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #9900FF
- Triadic colors: #0066FF, #FF0066
Live Components
Color Palettes
Bright Green #66FF00 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
Bright Green #66FF00 pairs with #9900FF as its complementary color, and #0066FF and #FF0066 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #66FF00;
}
/* Text */
.element {
color: #66FF00;
}
/* Border */
.element {
border: 1px solid #66FF00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#66FF00,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#66FF00,
#FFFFFF
);
}
// SCSS variable
$bright-green: #66FF00;
// With RGB channels (useful for rgba() usage)
$bright-green-r: 102;
$bright-green-g: 255;
$bright-green-b: 0;
// Usage
.element {
background-color: $bright-green;
color: rgba($bright-green-r, $bright-green-g, $bright-green-b, 0.8);
}