Random Color Generator

#a74310 Color

Color Codes
Hex Code #a74310
RGB Code rgb(167, 67, 16)
HSL Code hsl(20, 83%, 36%)

#a74310 Color Syntax

rgb()

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

 main {
    background-color: rgb(167, 67, 16);
   }

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(20, 83%, 36%);
  }

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

RGB Code Hex Code Preview
rgb(167, 67, 16, 10%) #a743101a  
rgb(167, 67, 16, 20%) #a7431033  
rgb(167, 67, 16, 40%) #a743104C  
rgb(167, 67, 16, 60%) #a7431099  
rgb(167, 67, 16, 80%) #a74310CC  
rgb(167, 67, 16, 100%) #a74310FF  

Saturated and desaturated colors of #a74310

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

#a74310 Color Usage In CSS

 body {
    color: #a74310;
    }
 p {
    color: rgb(167, 67, 16);
    }
 header {
    border-bottom:1px solid #a74310;
    }
Recent Random Colors