Random Color Generator

#5e7d72 Color

Color Codes
Hex Code #5e7d72
RGB Code rgb(94, 125, 114)
HSL Code hsl(159, 14%, 43%)

#5e7d72 Color Syntax

rgb()

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

 main {
    background-color: rgb(94, 125, 114);
   }

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(159, 14%, 43%);
  }

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 #5e7d72

RGB Code Hex Code Preview
rgb(94, 125, 114, 10%) #5e7d721a  
rgb(94, 125, 114, 20%) #5e7d7233  
rgb(94, 125, 114, 40%) #5e7d724C  
rgb(94, 125, 114, 60%) #5e7d7299  
rgb(94, 125, 114, 80%) #5e7d72CC  
rgb(94, 125, 114, 100%) #5e7d72FF  

Saturated and desaturated colors of #5e7d72

HSL Code Preview
hsl(159, 10%, 43%)  
hsl(159, 20%, 43%)  
hsl(159, 40%, 43%)  
hsl(159, 60%, 43%)  
hsl(159, 80%, 43%)  
hsl(159, 100%, 43%)  

#5e7d72 Color Usage In CSS

 body {
    color: #5e7d72;
    }
 p {
    color: rgb(94, 125, 114);
    }
 header {
    border-bottom:1px solid #5e7d72;
    }
Recent Random Colors