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
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 #66FF00 from deepest shade to lightest tint.
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);
}