Random Color Generator

#7df38c Color

Color Codes
Hex Code #7df38c
RGB Code rgb(125, 243, 140)
HSL Code hsl(128, 83%, 72%)

#7df38c Color Syntax

rgb()

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

 main {
    background-color: rgb(125, 243, 140);
   }

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(128, 83%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(125, 243, 140, 10%) #7df38c1a  
rgb(125, 243, 140, 20%) #7df38c33  
rgb(125, 243, 140, 40%) #7df38c4C  
rgb(125, 243, 140, 60%) #7df38c99  
rgb(125, 243, 140, 80%) #7df38cCC  
rgb(125, 243, 140, 100%) #7df38cFF  

Saturated and desaturated colors of #7df38c

HSL Code Preview
hsl(128, 10%, 72%)  
hsl(128, 20%, 72%)  
hsl(128, 40%, 72%)  
hsl(128, 60%, 72%)  
hsl(128, 80%, 72%)  
hsl(128, 100%, 72%)  

#7df38c Color Usage In CSS

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