Random Color Generator

#ad82ce Color

Color Codes
Hex Code #ad82ce
RGB Code rgb(173, 130, 206)
HSL Code hsl(274, 44%, 66%)

#ad82ce Color Syntax

rgb()

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

 main {
    background-color: rgb(173, 130, 206);
   }

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(274, 44%, 66%);
  }

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

RGB Code Hex Code Preview
rgb(173, 130, 206, 10%) #ad82ce1a  
rgb(173, 130, 206, 20%) #ad82ce33  
rgb(173, 130, 206, 40%) #ad82ce4C  
rgb(173, 130, 206, 60%) #ad82ce99  
rgb(173, 130, 206, 80%) #ad82ceCC  
rgb(173, 130, 206, 100%) #ad82ceFF  

Saturated and desaturated colors of #ad82ce

HSL Code Preview
hsl(274, 10%, 66%)  
hsl(274, 20%, 66%)  
hsl(274, 40%, 66%)  
hsl(274, 60%, 66%)  
hsl(274, 80%, 66%)  
hsl(274, 100%, 66%)  

#ad82ce Color Usage In CSS

 body {
    color: #ad82ce;
    }
 p {
    color: rgb(173, 130, 206);
    }
 header {
    border-bottom:1px solid #ad82ce;
    }
Recent Random Colors