Random Color Generator

#a15034 Color

Color Codes
Hex Code #a15034
RGB Code rgb(161, 80, 52)
HSL Code hsl(15, 51%, 42%)

#a15034 Color Syntax

rgb()

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

 main {
    background-color: rgb(161, 80, 52);
   }

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(15, 51%, 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 #a15034

RGB Code Hex Code Preview
rgb(161, 80, 52, 10%) #a150341a  
rgb(161, 80, 52, 20%) #a1503433  
rgb(161, 80, 52, 40%) #a150344C  
rgb(161, 80, 52, 60%) #a1503499  
rgb(161, 80, 52, 80%) #a15034CC  
rgb(161, 80, 52, 100%) #a15034FF  

Saturated and desaturated colors of #a15034

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

#a15034 Color Usage In CSS

 body {
    color: #a15034;
    }
 p {
    color: rgb(161, 80, 52);
    }
 header {
    border-bottom:1px solid #a15034;
    }
Recent Random Colors