Random Color Generator

#a96765 Color

Color Codes
Hex Code #a96765
RGB Code rgb(169, 103, 101)
HSL Code hsl(2, 28%, 53%)

#a96765 Color Syntax

rgb()

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

 main {
    background-color: rgb(169, 103, 101);
   }

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(2, 28%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(169, 103, 101, 10%) #a967651a  
rgb(169, 103, 101, 20%) #a9676533  
rgb(169, 103, 101, 40%) #a967654C  
rgb(169, 103, 101, 60%) #a9676599  
rgb(169, 103, 101, 80%) #a96765CC  
rgb(169, 103, 101, 100%) #a96765FF  

Saturated and desaturated colors of #a96765

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

#a96765 Color Usage In CSS

 body {
    color: #a96765;
    }
 p {
    color: rgb(169, 103, 101);
    }
 header {
    border-bottom:1px solid #a96765;
    }
Recent Random Colors