Random Color Generator

#dd7fcb Color

Color Codes
Hex Code #dd7fcb
RGB Code rgb(221, 127, 203)
HSL Code hsl(311, 58%, 68%)

#dd7fcb Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 127, 203);
   }

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(311, 58%, 68%);
  }

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

RGB Code Hex Code Preview
rgb(221, 127, 203, 10%) #dd7fcb1a  
rgb(221, 127, 203, 20%) #dd7fcb33  
rgb(221, 127, 203, 40%) #dd7fcb4C  
rgb(221, 127, 203, 60%) #dd7fcb99  
rgb(221, 127, 203, 80%) #dd7fcbCC  
rgb(221, 127, 203, 100%) #dd7fcbFF  

Saturated and desaturated colors of #dd7fcb

HSL Code Preview
hsl(311, 10%, 68%)  
hsl(311, 20%, 68%)  
hsl(311, 40%, 68%)  
hsl(311, 60%, 68%)  
hsl(311, 80%, 68%)  
hsl(311, 100%, 68%)  

#dd7fcb Color Usage In CSS

 body {
    color: #dd7fcb;
    }
 p {
    color: rgb(221, 127, 203);
    }
 header {
    border-bottom:1px solid #dd7fcb;
    }
Recent Random Colors