Random Color Generator

#a94d4d Color

Color Codes
Hex Code #a94d4d
RGB Code rgb(169, 77, 77)
HSL Code hsl(0, 37%, 48%)

#a94d4d Color Syntax

rgb()

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

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

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(0, 37%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(169, 77, 77, 10%) #a94d4d1a  
rgb(169, 77, 77, 20%) #a94d4d33  
rgb(169, 77, 77, 40%) #a94d4d4C  
rgb(169, 77, 77, 60%) #a94d4d99  
rgb(169, 77, 77, 80%) #a94d4dCC  
rgb(169, 77, 77, 100%) #a94d4dFF  

Saturated and desaturated colors of #a94d4d

HSL Code Preview
hsl(0, 10%, 48%)  
hsl(0, 20%, 48%)  
hsl(0, 40%, 48%)  
hsl(0, 60%, 48%)  
hsl(0, 80%, 48%)  
hsl(0, 100%, 48%)  

#a94d4d Color Usage In CSS

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