Random Color Generator

#d64391 Color

Color Codes
Hex Code #d64391
RGB Code rgb(214, 67, 145)
HSL Code hsl(328, 64%, 55%)

#d64391 Color Syntax

rgb()

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

 main {
    background-color: rgb(214, 67, 145);
   }

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(328, 64%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(214, 67, 145, 10%) #d643911a  
rgb(214, 67, 145, 20%) #d6439133  
rgb(214, 67, 145, 40%) #d643914C  
rgb(214, 67, 145, 60%) #d6439199  
rgb(214, 67, 145, 80%) #d64391CC  
rgb(214, 67, 145, 100%) #d64391FF  

Saturated and desaturated colors of #d64391

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

#d64391 Color Usage In CSS

 body {
    color: #d64391;
    }
 p {
    color: rgb(214, 67, 145);
    }
 header {
    border-bottom:1px solid #d64391;
    }
Recent Random Colors