Random Color Generator

#7decae Color

Color Codes
Hex Code #7decae
RGB Code rgb(125, 236, 174)
HSL Code hsl(146, 74%, 71%)

#7decae Color Syntax

rgb()

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

 main {
    background-color: rgb(125, 236, 174);
   }

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(146, 74%, 71%);
  }

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

RGB Code Hex Code Preview
rgb(125, 236, 174, 10%) #7decae1a  
rgb(125, 236, 174, 20%) #7decae33  
rgb(125, 236, 174, 40%) #7decae4C  
rgb(125, 236, 174, 60%) #7decae99  
rgb(125, 236, 174, 80%) #7decaeCC  
rgb(125, 236, 174, 100%) #7decaeFF  

Saturated and desaturated colors of #7decae

HSL Code Preview
hsl(146, 10%, 71%)  
hsl(146, 20%, 71%)  
hsl(146, 40%, 71%)  
hsl(146, 60%, 71%)  
hsl(146, 80%, 71%)  
hsl(146, 100%, 71%)  

#7decae Color Usage In CSS

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