Random Color Generator

#a34d26 Color

Color Codes
Hex Code #a34d26
RGB Code rgb(163, 77, 38)
HSL Code hsl(19, 62%, 39%)

#a34d26 Color Syntax

rgb()

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

 main {
    background-color: rgb(163, 77, 38);
   }

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(19, 62%, 39%);
  }

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

RGB Code Hex Code Preview
rgb(163, 77, 38, 10%) #a34d261a  
rgb(163, 77, 38, 20%) #a34d2633  
rgb(163, 77, 38, 40%) #a34d264C  
rgb(163, 77, 38, 60%) #a34d2699  
rgb(163, 77, 38, 80%) #a34d26CC  
rgb(163, 77, 38, 100%) #a34d26FF  

Saturated and desaturated colors of #a34d26

HSL Code Preview
hsl(19, 10%, 39%)  
hsl(19, 20%, 39%)  
hsl(19, 40%, 39%)  
hsl(19, 60%, 39%)  
hsl(19, 80%, 39%)  
hsl(19, 100%, 39%)  

#a34d26 Color Usage In CSS

 body {
    color: #a34d26;
    }
 p {
    color: rgb(163, 77, 38);
    }
 header {
    border-bottom:1px solid #a34d26;
    }
Recent Random Colors