Random Color Generator

#dd3a93 Color

Color Codes
Hex Code #dd3a93
RGB Code rgb(221, 58, 147)
HSL Code hsl(327, 71%, 55%)

#dd3a93 Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 58, 147);
   }

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(327, 71%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(221, 58, 147, 10%) #dd3a931a  
rgb(221, 58, 147, 20%) #dd3a9333  
rgb(221, 58, 147, 40%) #dd3a934C  
rgb(221, 58, 147, 60%) #dd3a9399  
rgb(221, 58, 147, 80%) #dd3a93CC  
rgb(221, 58, 147, 100%) #dd3a93FF  

Saturated and desaturated colors of #dd3a93

HSL Code Preview
hsl(327, 10%, 55%)  
hsl(327, 20%, 55%)  
hsl(327, 40%, 55%)  
hsl(327, 60%, 55%)  
hsl(327, 80%, 55%)  
hsl(327, 100%, 55%)  

#dd3a93 Color Usage In CSS

 body {
    color: #dd3a93;
    }
 p {
    color: rgb(221, 58, 147);
    }
 header {
    border-bottom:1px solid #dd3a93;
    }
Recent Random Colors