Random Color Generator

#718272 Color

Color Codes
Hex Code #718272
RGB Code rgb(113, 130, 114)
HSL Code hsl(124, 7%, 48%)

#718272 Color Syntax

rgb()

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

 main {
    background-color: rgb(113, 130, 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(124, 7%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(113, 130, 114, 10%) #7182721a  
rgb(113, 130, 114, 20%) #71827233  
rgb(113, 130, 114, 40%) #7182724C  
rgb(113, 130, 114, 60%) #71827299  
rgb(113, 130, 114, 80%) #718272CC  
rgb(113, 130, 114, 100%) #718272FF  

Saturated and desaturated colors of #718272

HSL Code Preview
hsl(124, 10%, 48%)  
hsl(124, 20%, 48%)  
hsl(124, 40%, 48%)  
hsl(124, 60%, 48%)  
hsl(124, 80%, 48%)  
hsl(124, 100%, 48%)  

#718272 Color Usage In CSS

 body {
    color: #718272;
    }
 p {
    color: rgb(113, 130, 114);
    }
 header {
    border-bottom:1px solid #718272;
    }
Recent Random Colors