Random Color Generator

#d64e67 Color

Color Codes
Hex Code #d64e67
RGB Code rgb(214, 78, 103)
HSL Code hsl(349, 62%, 57%)

#d64e67 Color Syntax

rgb()

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

 main {
    background-color: rgb(214, 78, 103);
   }

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, 62%, 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 #d64e67

RGB Code Hex Code Preview
rgb(214, 78, 103, 10%) #d64e671a  
rgb(214, 78, 103, 20%) #d64e6733  
rgb(214, 78, 103, 40%) #d64e674C  
rgb(214, 78, 103, 60%) #d64e6799  
rgb(214, 78, 103, 80%) #d64e67CC  
rgb(214, 78, 103, 100%) #d64e67FF  

Saturated and desaturated colors of #d64e67

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

#d64e67 Color Usage In CSS

 body {
    color: #d64e67;
    }
 p {
    color: rgb(214, 78, 103);
    }
 header {
    border-bottom:1px solid #d64e67;
    }
Recent Random Colors