Random Color Generator

#c20c14 Color

Color Codes
Hex Code #c20c14
RGB Code rgb(194, 12, 20)
HSL Code hsl(357, 88%, 40%)

#c20c14 Color Syntax

rgb()

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

 main {
    background-color: rgb(194, 12, 20);
   }

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(357, 88%, 40%);
  }

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

RGB Code Hex Code Preview
rgb(194, 12, 20, 10%) #c20c141a  
rgb(194, 12, 20, 20%) #c20c1433  
rgb(194, 12, 20, 40%) #c20c144C  
rgb(194, 12, 20, 60%) #c20c1499  
rgb(194, 12, 20, 80%) #c20c14CC  
rgb(194, 12, 20, 100%) #c20c14FF  

Saturated and desaturated colors of #c20c14

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

#c20c14 Color Usage In CSS

 body {
    color: #c20c14;
    }
 p {
    color: rgb(194, 12, 20);
    }
 header {
    border-bottom:1px solid #c20c14;
    }
Recent Random Colors