Random Color Generator

#dd4a80 Color

Color Codes
Hex Code #dd4a80
RGB Code rgb(221, 74, 128)
HSL Code hsl(338, 68%, 58%)

#dd4a80 Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 74, 128);
   }

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

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

RGB Code Hex Code Preview
rgb(221, 74, 128, 10%) #dd4a801a  
rgb(221, 74, 128, 20%) #dd4a8033  
rgb(221, 74, 128, 40%) #dd4a804C  
rgb(221, 74, 128, 60%) #dd4a8099  
rgb(221, 74, 128, 80%) #dd4a80CC  
rgb(221, 74, 128, 100%) #dd4a80FF  

Saturated and desaturated colors of #dd4a80

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

#dd4a80 Color Usage In CSS

 body {
    color: #dd4a80;
    }
 p {
    color: rgb(221, 74, 128);
    }
 header {
    border-bottom:1px solid #dd4a80;
    }
Recent Random Colors