Random Color Generator

#7dc756 Color

Color Codes
Hex Code #7dc756
RGB Code rgb(125, 199, 86)
HSL Code hsl(99, 50%, 56%)

#7dc756 Color Syntax

rgb()

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

 main {
    background-color: rgb(125, 199, 86);
   }

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(99, 50%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(125, 199, 86, 10%) #7dc7561a  
rgb(125, 199, 86, 20%) #7dc75633  
rgb(125, 199, 86, 40%) #7dc7564C  
rgb(125, 199, 86, 60%) #7dc75699  
rgb(125, 199, 86, 80%) #7dc756CC  
rgb(125, 199, 86, 100%) #7dc756FF  

Saturated and desaturated colors of #7dc756

HSL Code Preview
hsl(99, 10%, 56%)  
hsl(99, 20%, 56%)  
hsl(99, 40%, 56%)  
hsl(99, 60%, 56%)  
hsl(99, 80%, 56%)  
hsl(99, 100%, 56%)  

#7dc756 Color Usage In CSS

 body {
    color: #7dc756;
    }
 p {
    color: rgb(125, 199, 86);
    }
 header {
    border-bottom:1px solid #7dc756;
    }
Recent Random Colors