Random Color Generator

#dd7591 Color

Color Codes
Hex Code #dd7591
RGB Code rgb(221, 117, 145)
HSL Code hsl(344, 60%, 66%)

#dd7591 Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 117, 145);
   }

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(344, 60%, 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 #dd7591

RGB Code Hex Code Preview
rgb(221, 117, 145, 10%) #dd75911a  
rgb(221, 117, 145, 20%) #dd759133  
rgb(221, 117, 145, 40%) #dd75914C  
rgb(221, 117, 145, 60%) #dd759199  
rgb(221, 117, 145, 80%) #dd7591CC  
rgb(221, 117, 145, 100%) #dd7591FF  

Saturated and desaturated colors of #dd7591

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

#dd7591 Color Usage In CSS

 body {
    color: #dd7591;
    }
 p {
    color: rgb(221, 117, 145);
    }
 header {
    border-bottom:1px solid #dd7591;
    }
Recent Random Colors