Random Color Generator

#d45c51 Color

Color Codes
Hex Code #d45c51
RGB Code rgb(212, 92, 81)
HSL Code hsl(5, 60%, 57%)

#d45c51 Color Syntax

rgb()

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

 main {
    background-color: rgb(212, 92, 81);
   }

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(5, 60%, 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 #d45c51

RGB Code Hex Code Preview
rgb(212, 92, 81, 10%) #d45c511a  
rgb(212, 92, 81, 20%) #d45c5133  
rgb(212, 92, 81, 40%) #d45c514C  
rgb(212, 92, 81, 60%) #d45c5199  
rgb(212, 92, 81, 80%) #d45c51CC  
rgb(212, 92, 81, 100%) #d45c51FF  

Saturated and desaturated colors of #d45c51

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

#d45c51 Color Usage In CSS

 body {
    color: #d45c51;
    }
 p {
    color: rgb(212, 92, 81);
    }
 header {
    border-bottom:1px solid #d45c51;
    }
Recent Random Colors