Random Color Generator

#c70b3c Color

Color Codes
Hex Code #c70b3c
RGB Code rgb(199, 11, 60)
HSL Code hsl(344, 90%, 41%)

#c70b3c Color Syntax

rgb()

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

 main {
    background-color: rgb(199, 11, 60);
   }

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(344, 90%, 41%);
  }

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

RGB Code Hex Code Preview
rgb(199, 11, 60, 10%) #c70b3c1a  
rgb(199, 11, 60, 20%) #c70b3c33  
rgb(199, 11, 60, 40%) #c70b3c4C  
rgb(199, 11, 60, 60%) #c70b3c99  
rgb(199, 11, 60, 80%) #c70b3cCC  
rgb(199, 11, 60, 100%) #c70b3cFF  

Saturated and desaturated colors of #c70b3c

HSL Code Preview
hsl(344, 10%, 41%)  
hsl(344, 20%, 41%)  
hsl(344, 40%, 41%)  
hsl(344, 60%, 41%)  
hsl(344, 80%, 41%)  
hsl(344, 100%, 41%)  

#c70b3c Color Usage In CSS

 body {
    color: #c70b3c;
    }
 p {
    color: rgb(199, 11, 60);
    }
 header {
    border-bottom:1px solid #c70b3c;
    }
Recent Random Colors