Random Color Generator

#d60c1c Color

Color Codes
Hex Code #d60c1c
RGB Code rgb(214, 12, 28)
HSL Code hsl(355, 89%, 44%)

#d60c1c Color Syntax

rgb()

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

 main {
    background-color: rgb(214, 12, 28);
   }

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(355, 89%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(214, 12, 28, 10%) #d60c1c1a  
rgb(214, 12, 28, 20%) #d60c1c33  
rgb(214, 12, 28, 40%) #d60c1c4C  
rgb(214, 12, 28, 60%) #d60c1c99  
rgb(214, 12, 28, 80%) #d60c1cCC  
rgb(214, 12, 28, 100%) #d60c1cFF  

Saturated and desaturated colors of #d60c1c

HSL Code Preview
hsl(355, 10%, 44%)  
hsl(355, 20%, 44%)  
hsl(355, 40%, 44%)  
hsl(355, 60%, 44%)  
hsl(355, 80%, 44%)  
hsl(355, 100%, 44%)  

#d60c1c Color Usage In CSS

 body {
    color: #d60c1c;
    }
 p {
    color: rgb(214, 12, 28);
    }
 header {
    border-bottom:1px solid #d60c1c;
    }
Recent Random Colors