Random Color Generator

#dd546c Color

Color Codes
Hex Code #dd546c
RGB Code rgb(221, 84, 108)
HSL Code hsl(349, 67%, 60%)

#dd546c Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 84, 108);
   }

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(349, 67%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(221, 84, 108, 10%) #dd546c1a  
rgb(221, 84, 108, 20%) #dd546c33  
rgb(221, 84, 108, 40%) #dd546c4C  
rgb(221, 84, 108, 60%) #dd546c99  
rgb(221, 84, 108, 80%) #dd546cCC  
rgb(221, 84, 108, 100%) #dd546cFF  

Saturated and desaturated colors of #dd546c

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

#dd546c Color Usage In CSS

 body {
    color: #dd546c;
    }
 p {
    color: rgb(221, 84, 108);
    }
 header {
    border-bottom:1px solid #dd546c;
    }
Recent Random Colors