Random Color Generator

#a68130 Color

Color Codes
Hex Code #a68130
RGB Code rgb(166, 129, 48)
HSL Code hsl(41, 55%, 42%)

#a68130 Color Syntax

rgb()

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

 main {
    background-color: rgb(166, 129, 48);
   }

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(41, 55%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(166, 129, 48, 10%) #a681301a  
rgb(166, 129, 48, 20%) #a6813033  
rgb(166, 129, 48, 40%) #a681304C  
rgb(166, 129, 48, 60%) #a6813099  
rgb(166, 129, 48, 80%) #a68130CC  
rgb(166, 129, 48, 100%) #a68130FF  

Saturated and desaturated colors of #a68130

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

#a68130 Color Usage In CSS

 body {
    color: #a68130;
    }
 p {
    color: rgb(166, 129, 48);
    }
 header {
    border-bottom:1px solid #a68130;
    }
Recent Random Colors