Random Color Generator

#7ed575 Color

Color Codes
Hex Code #7ed575
RGB Code rgb(126, 213, 117)
HSL Code hsl(114, 53%, 65%)

#7ed575 Color Syntax

rgb()

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

 main {
    background-color: rgb(126, 213, 117);
   }

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(114, 53%, 65%);
  }

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 #7ed575

RGB Code Hex Code Preview
rgb(126, 213, 117, 10%) #7ed5751a  
rgb(126, 213, 117, 20%) #7ed57533  
rgb(126, 213, 117, 40%) #7ed5754C  
rgb(126, 213, 117, 60%) #7ed57599  
rgb(126, 213, 117, 80%) #7ed575CC  
rgb(126, 213, 117, 100%) #7ed575FF  

Saturated and desaturated colors of #7ed575

HSL Code Preview
hsl(114, 10%, 65%)  
hsl(114, 20%, 65%)  
hsl(114, 40%, 65%)  
hsl(114, 60%, 65%)  
hsl(114, 80%, 65%)  
hsl(114, 100%, 65%)  

#7ed575 Color Usage In CSS

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