Random Color Generator

#d84555 Color

Color Codes
Hex Code #d84555
RGB Code rgb(216, 69, 85)
HSL Code hsl(353, 65%, 56%)

#d84555 Color Syntax

rgb()

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

 main {
    background-color: rgb(216, 69, 85);
   }

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(353, 65%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(216, 69, 85, 10%) #d845551a  
rgb(216, 69, 85, 20%) #d8455533  
rgb(216, 69, 85, 40%) #d845554C  
rgb(216, 69, 85, 60%) #d8455599  
rgb(216, 69, 85, 80%) #d84555CC  
rgb(216, 69, 85, 100%) #d84555FF  

Saturated and desaturated colors of #d84555

HSL Code Preview
hsl(353, 10%, 56%)  
hsl(353, 20%, 56%)  
hsl(353, 40%, 56%)  
hsl(353, 60%, 56%)  
hsl(353, 80%, 56%)  
hsl(353, 100%, 56%)  

#d84555 Color Usage In CSS

 body {
    color: #d84555;
    }
 p {
    color: rgb(216, 69, 85);
    }
 header {
    border-bottom:1px solid #d84555;
    }
Recent Random Colors