Random Color Generator

#d74da4 Color

Color Codes
Hex Code #d74da4
RGB Code rgb(215, 77, 164)
HSL Code hsl(322, 63%, 57%)

#d74da4 Color Syntax

rgb()

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

 main {
    background-color: rgb(215, 77, 164);
   }

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(322, 63%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(215, 77, 164, 10%) #d74da41a  
rgb(215, 77, 164, 20%) #d74da433  
rgb(215, 77, 164, 40%) #d74da44C  
rgb(215, 77, 164, 60%) #d74da499  
rgb(215, 77, 164, 80%) #d74da4CC  
rgb(215, 77, 164, 100%) #d74da4FF  

Saturated and desaturated colors of #d74da4

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

#d74da4 Color Usage In CSS

 body {
    color: #d74da4;
    }
 p {
    color: rgb(215, 77, 164);
    }
 header {
    border-bottom:1px solid #d74da4;
    }
Recent Random Colors