Random Color Generator

#727d16 Color

Color Codes
Hex Code #727d16
RGB Code rgb(114, 125, 22)
HSL Code hsl(66, 70%, 29%)

#727d16 Color Syntax

rgb()

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

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

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(66, 70%, 29%);
  }

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 #727d16

RGB Code Hex Code Preview
rgb(114, 125, 22, 10%) #727d161a  
rgb(114, 125, 22, 20%) #727d1633  
rgb(114, 125, 22, 40%) #727d164C  
rgb(114, 125, 22, 60%) #727d1699  
rgb(114, 125, 22, 80%) #727d16CC  
rgb(114, 125, 22, 100%) #727d16FF  

Saturated and desaturated colors of #727d16

HSL Code Preview
hsl(66, 10%, 29%)  
hsl(66, 20%, 29%)  
hsl(66, 40%, 29%)  
hsl(66, 60%, 29%)  
hsl(66, 80%, 29%)  
hsl(66, 100%, 29%)  

#727d16 Color Usage In CSS

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