Random Color Generator

#a1775a Color

Color Codes
Hex Code #a1775a
RGB Code rgb(161, 119, 90)
HSL Code hsl(25, 28%, 49%)

#a1775a Color Syntax

rgb()

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

 main {
    background-color: rgb(161, 119, 90);
   }

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(25, 28%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(161, 119, 90, 10%) #a1775a1a  
rgb(161, 119, 90, 20%) #a1775a33  
rgb(161, 119, 90, 40%) #a1775a4C  
rgb(161, 119, 90, 60%) #a1775a99  
rgb(161, 119, 90, 80%) #a1775aCC  
rgb(161, 119, 90, 100%) #a1775aFF  

Saturated and desaturated colors of #a1775a

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

#a1775a Color Usage In CSS

 body {
    color: #a1775a;
    }
 p {
    color: rgb(161, 119, 90);
    }
 header {
    border-bottom:1px solid #a1775a;
    }
Recent Random Colors