Random Color Generator

#ad5469 Color

Color Codes
Hex Code #ad5469
RGB Code rgb(173, 84, 105)
HSL Code hsl(346, 35%, 50%)

#ad5469 Color Syntax

rgb()

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

 main {
    background-color: rgb(173, 84, 105);
   }

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(346, 35%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(173, 84, 105, 10%) #ad54691a  
rgb(173, 84, 105, 20%) #ad546933  
rgb(173, 84, 105, 40%) #ad54694C  
rgb(173, 84, 105, 60%) #ad546999  
rgb(173, 84, 105, 80%) #ad5469CC  
rgb(173, 84, 105, 100%) #ad5469FF  

Saturated and desaturated colors of #ad5469

HSL Code Preview
hsl(346, 10%, 50%)  
hsl(346, 20%, 50%)  
hsl(346, 40%, 50%)  
hsl(346, 60%, 50%)  
hsl(346, 80%, 50%)  
hsl(346, 100%, 50%)  

#ad5469 Color Usage In CSS

 body {
    color: #ad5469;
    }
 p {
    color: rgb(173, 84, 105);
    }
 header {
    border-bottom:1px solid #ad5469;
    }
Recent Random Colors