Random Color Generator

#da4d7c Color

Color Codes
Hex Code #da4d7c
RGB Code rgb(218, 77, 124)
HSL Code hsl(340, 66%, 58%)

#da4d7c Color Syntax

rgb()

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

 main {
    background-color: rgb(218, 77, 124);
   }

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(340, 66%, 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 #da4d7c

RGB Code Hex Code Preview
rgb(218, 77, 124, 10%) #da4d7c1a  
rgb(218, 77, 124, 20%) #da4d7c33  
rgb(218, 77, 124, 40%) #da4d7c4C  
rgb(218, 77, 124, 60%) #da4d7c99  
rgb(218, 77, 124, 80%) #da4d7cCC  
rgb(218, 77, 124, 100%) #da4d7cFF  

Saturated and desaturated colors of #da4d7c

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

#da4d7c Color Usage In CSS

 body {
    color: #da4d7c;
    }
 p {
    color: rgb(218, 77, 124);
    }
 header {
    border-bottom:1px solid #da4d7c;
    }
Recent Random Colors