Random Color Generator

#dd1471 Color

Color Codes
Hex Code #dd1471
RGB Code rgb(221, 20, 113)
HSL Code hsl(332, 83%, 47%)

#dd1471 Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 20, 113);
   }

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(332, 83%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(221, 20, 113, 10%) #dd14711a  
rgb(221, 20, 113, 20%) #dd147133  
rgb(221, 20, 113, 40%) #dd14714C  
rgb(221, 20, 113, 60%) #dd147199  
rgb(221, 20, 113, 80%) #dd1471CC  
rgb(221, 20, 113, 100%) #dd1471FF  

Saturated and desaturated colors of #dd1471

HSL Code Preview
hsl(332, 10%, 47%)  
hsl(332, 20%, 47%)  
hsl(332, 40%, 47%)  
hsl(332, 60%, 47%)  
hsl(332, 80%, 47%)  
hsl(332, 100%, 47%)  

#dd1471 Color Usage In CSS

 body {
    color: #dd1471;
    }
 p {
    color: rgb(221, 20, 113);
    }
 header {
    border-bottom:1px solid #dd1471;
    }
Recent Random Colors