Random Color Generator

#714b12 Color

Color Codes
Hex Code #714b12
RGB Code rgb(113, 75, 18)
HSL Code hsl(36, 73%, 26%)

#714b12 Color Syntax

rgb()

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

 main {
    background-color: rgb(113, 75, 18);
   }

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(36, 73%, 26%);
  }

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 #714b12

RGB Code Hex Code Preview
rgb(113, 75, 18, 10%) #714b121a  
rgb(113, 75, 18, 20%) #714b1233  
rgb(113, 75, 18, 40%) #714b124C  
rgb(113, 75, 18, 60%) #714b1299  
rgb(113, 75, 18, 80%) #714b12CC  
rgb(113, 75, 18, 100%) #714b12FF  

Saturated and desaturated colors of #714b12

HSL Code Preview
hsl(36, 10%, 26%)  
hsl(36, 20%, 26%)  
hsl(36, 40%, 26%)  
hsl(36, 60%, 26%)  
hsl(36, 80%, 26%)  
hsl(36, 100%, 26%)  

#714b12 Color Usage In CSS

 body {
    color: #714b12;
    }
 p {
    color: rgb(113, 75, 18);
    }
 header {
    border-bottom:1px solid #714b12;
    }
Recent Random Colors