Random Color Generator

#82f583 Color

Color Codes
Hex Code #82f583
RGB Code rgb(130, 245, 131)
HSL Code hsl(121, 85%, 74%)

#82f583 Color Syntax

rgb()

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

 main {
    background-color: rgb(130, 245, 131);
   }

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(121, 85%, 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 #82f583

RGB Code Hex Code Preview
rgb(130, 245, 131, 10%) #82f5831a  
rgb(130, 245, 131, 20%) #82f58333  
rgb(130, 245, 131, 40%) #82f5834C  
rgb(130, 245, 131, 60%) #82f58399  
rgb(130, 245, 131, 80%) #82f583CC  
rgb(130, 245, 131, 100%) #82f583FF  

Saturated and desaturated colors of #82f583

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

#82f583 Color Usage In CSS

 body {
    color: #82f583;
    }
 p {
    color: rgb(130, 245, 131);
    }
 header {
    border-bottom:1px solid #82f583;
    }
Recent Random Colors