Random Color Generator

#a5565e Color

Color Codes
Hex Code #a5565e
RGB Code rgb(165, 86, 94)
HSL Code hsl(354, 31%, 49%)

#a5565e Color Syntax

rgb()

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

 main {
    background-color: rgb(165, 86, 94);
   }

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(354, 31%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(165, 86, 94, 10%) #a5565e1a  
rgb(165, 86, 94, 20%) #a5565e33  
rgb(165, 86, 94, 40%) #a5565e4C  
rgb(165, 86, 94, 60%) #a5565e99  
rgb(165, 86, 94, 80%) #a5565eCC  
rgb(165, 86, 94, 100%) #a5565eFF  

Saturated and desaturated colors of #a5565e

HSL Code Preview
hsl(354, 10%, 49%)  
hsl(354, 20%, 49%)  
hsl(354, 40%, 49%)  
hsl(354, 60%, 49%)  
hsl(354, 80%, 49%)  
hsl(354, 100%, 49%)  

#a5565e Color Usage In CSS

 body {
    color: #a5565e;
    }
 p {
    color: rgb(165, 86, 94);
    }
 header {
    border-bottom:1px solid #a5565e;
    }
Recent Random Colors