Random Color Generator

#82ce9a Color

Color Codes
Hex Code #82ce9a
RGB Code rgb(130, 206, 154)
HSL Code hsl(139, 44%, 66%)

#82ce9a Color Syntax

rgb()

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

 main {
    background-color: rgb(130, 206, 154);
   }

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(139, 44%, 66%);
  }

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 #82ce9a

RGB Code Hex Code Preview
rgb(130, 206, 154, 10%) #82ce9a1a  
rgb(130, 206, 154, 20%) #82ce9a33  
rgb(130, 206, 154, 40%) #82ce9a4C  
rgb(130, 206, 154, 60%) #82ce9a99  
rgb(130, 206, 154, 80%) #82ce9aCC  
rgb(130, 206, 154, 100%) #82ce9aFF  

Saturated and desaturated colors of #82ce9a

HSL Code Preview
hsl(139, 10%, 66%)  
hsl(139, 20%, 66%)  
hsl(139, 40%, 66%)  
hsl(139, 60%, 66%)  
hsl(139, 80%, 66%)  
hsl(139, 100%, 66%)  

#82ce9a Color Usage In CSS

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