Random Color Generator

#d66699 Color

Color Codes
Hex Code #d66699
RGB Code rgb(214, 102, 153)
HSL Code hsl(333, 58%, 62%)

#d66699 Color Syntax

rgb()

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

 main {
    background-color: rgb(214, 102, 153);
   }

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(333, 58%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(214, 102, 153, 10%) #d666991a  
rgb(214, 102, 153, 20%) #d6669933  
rgb(214, 102, 153, 40%) #d666994C  
rgb(214, 102, 153, 60%) #d6669999  
rgb(214, 102, 153, 80%) #d66699CC  
rgb(214, 102, 153, 100%) #d66699FF  

Saturated and desaturated colors of #d66699

HSL Code Preview
hsl(333, 10%, 62%)  
hsl(333, 20%, 62%)  
hsl(333, 40%, 62%)  
hsl(333, 60%, 62%)  
hsl(333, 80%, 62%)  
hsl(333, 100%, 62%)  

#d66699 Color Usage In CSS

 body {
    color: #d66699;
    }
 p {
    color: rgb(214, 102, 153);
    }
 header {
    border-bottom:1px solid #d66699;
    }
Recent Random Colors