Bright Green

HEX: #66FF00 | Modern Palette

On White
1.32:1
FAIL
On Black
15.87:1
PASS

Color Specifications

HEX
#66FF00
RGB
102, 255, 0
HSL
96°, 100% ,100%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Playful
Style
Neon Cool

Accessibility Simulation

Deuteranopia #E0E026
Protanopia #F4F400
Tritanopia #8DF0F0
Achromatopsia #E0E0E0

Frequently Asked Questions

Bright Green (#66FF00) is a color with RGB(102, 255, 0) and HSL(96°, 100%, 100%).

#66FF00 pairs strongly with #9900FF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#66FF00 is suitable for Text, Button, Background and works well with Neon, Cool styles.

#66FF00 is commonly associated with Playful.

Similar Named Colors

Lawn Green #7CFC00 ΔE 1.79
Chartreuse #7FFF00 ΔE 1.91
Harlequin #3FFF00 ΔE 2.02
Neon Green #39FF14 ΔE 2.44

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