Random Color Generator

#a84c50 Color

Color Codes
Hex Code #a84c50
RGB Code rgb(168, 76, 80)
HSL Code hsl(357, 38%, 48%)

#a84c50 Color Syntax

rgb()

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

 main {
    background-color: rgb(168, 76, 80);
   }

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(357, 38%, 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 #a84c50

RGB Code Hex Code Preview
rgb(168, 76, 80, 10%) #a84c501a  
rgb(168, 76, 80, 20%) #a84c5033  
rgb(168, 76, 80, 40%) #a84c504C  
rgb(168, 76, 80, 60%) #a84c5099  
rgb(168, 76, 80, 80%) #a84c50CC  
rgb(168, 76, 80, 100%) #a84c50FF  

Saturated and desaturated colors of #a84c50

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

#a84c50 Color Usage In CSS

 body {
    color: #a84c50;
    }
 p {
    color: rgb(168, 76, 80);
    }
 header {
    border-bottom:1px solid #a84c50;
    }
Recent Random Colors