Random Color Generator

#a78258 Color

Color Codes
Hex Code #a78258
RGB Code rgb(167, 130, 88)
HSL Code hsl(32, 31%, 50%)

#a78258 Color Syntax

rgb()

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

 main {
    background-color: rgb(167, 130, 88);
   }

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(32, 31%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(167, 130, 88, 10%) #a782581a  
rgb(167, 130, 88, 20%) #a7825833  
rgb(167, 130, 88, 40%) #a782584C  
rgb(167, 130, 88, 60%) #a7825899  
rgb(167, 130, 88, 80%) #a78258CC  
rgb(167, 130, 88, 100%) #a78258FF  

Saturated and desaturated colors of #a78258

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

#a78258 Color Usage In CSS

 body {
    color: #a78258;
    }
 p {
    color: rgb(167, 130, 88);
    }
 header {
    border-bottom:1px solid #a78258;
    }
Recent Random Colors