Random Color Generator

#7efa82 Color

Color Codes
Hex Code #7efa82
RGB Code rgb(126, 250, 130)
HSL Code hsl(122, 93%, 74%)

#7efa82 Color Syntax

rgb()

 rgb(Red, Green, Blue);
 rgba(Red, Green, Blue, Alpha);

 main {
    background-color: rgb(126, 250, 130);
   }

R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.

hsl()

 hsl(hue saturation lightness);
 hsl(hue saturation lightness / alpha);

 div {
  background-color: hsl(122, 93%, 74%);
  }

Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.

Lighter and darker colors of #7efa82

RGB Code Hex Code Preview
rgb(126, 250, 130, 10%) #7efa821a  
rgb(126, 250, 130, 20%) #7efa8233  
rgb(126, 250, 130, 40%) #7efa824C  
rgb(126, 250, 130, 60%) #7efa8299  
rgb(126, 250, 130, 80%) #7efa82CC  
rgb(126, 250, 130, 100%) #7efa82FF  

Saturated and desaturated colors of #7efa82

HSL Code Preview
hsl(122, 10%, 74%)  
hsl(122, 20%, 74%)  
hsl(122, 40%, 74%)  
hsl(122, 60%, 74%)  
hsl(122, 80%, 74%)  
hsl(122, 100%, 74%)  

#7efa82 Color Usage In CSS

 body {
    color: #7efa82;
    }
 p {
    color: rgb(126, 250, 130);
    }
 header {
    border-bottom:1px solid #7efa82;
    }
Recent Random Colors