Random Color Generator

#7dfb88 Color

Color Codes
Hex Code #7dfb88
RGB Code rgb(125, 251, 136)
HSL Code hsl(125, 94%, 74%)

#7dfb88 Color Syntax

rgb()

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

 main {
    background-color: rgb(125, 251, 136);
   }

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(125, 94%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(125, 251, 136, 10%) #7dfb881a  
rgb(125, 251, 136, 20%) #7dfb8833  
rgb(125, 251, 136, 40%) #7dfb884C  
rgb(125, 251, 136, 60%) #7dfb8899  
rgb(125, 251, 136, 80%) #7dfb88CC  
rgb(125, 251, 136, 100%) #7dfb88FF  

Saturated and desaturated colors of #7dfb88

HSL Code Preview
hsl(125, 10%, 74%)  
hsl(125, 20%, 74%)  
hsl(125, 40%, 74%)  
hsl(125, 60%, 74%)  
hsl(125, 80%, 74%)  
hsl(125, 100%, 74%)  

#7dfb88 Color Usage In CSS

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