Random Color Generator

#7dd327 Color

Color Codes
Hex Code #7dd327
RGB Code rgb(125, 211, 39)
HSL Code hsl(90, 69%, 49%)

#7dd327 Color Syntax

rgb()

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

 main {
    background-color: rgb(125, 211, 39);
   }

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(90, 69%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(125, 211, 39, 10%) #7dd3271a  
rgb(125, 211, 39, 20%) #7dd32733  
rgb(125, 211, 39, 40%) #7dd3274C  
rgb(125, 211, 39, 60%) #7dd32799  
rgb(125, 211, 39, 80%) #7dd327CC  
rgb(125, 211, 39, 100%) #7dd327FF  

Saturated and desaturated colors of #7dd327

HSL Code Preview
hsl(90, 10%, 49%)  
hsl(90, 20%, 49%)  
hsl(90, 40%, 49%)  
hsl(90, 60%, 49%)  
hsl(90, 80%, 49%)  
hsl(90, 100%, 49%)  

#7dd327 Color Usage In CSS

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