Random Color Generator

#c91b0a Color

Color Codes
Hex Code #c91b0a
RGB Code rgb(201, 27, 10)
HSL Code hsl(5, 91%, 41%)

#c91b0a Color Syntax

rgb()

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

 main {
    background-color: rgb(201, 27, 10);
   }

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, 91%, 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 #c91b0a

RGB Code Hex Code Preview
rgb(201, 27, 10, 10%) #c91b0a1a  
rgb(201, 27, 10, 20%) #c91b0a33  
rgb(201, 27, 10, 40%) #c91b0a4C  
rgb(201, 27, 10, 60%) #c91b0a99  
rgb(201, 27, 10, 80%) #c91b0aCC  
rgb(201, 27, 10, 100%) #c91b0aFF  

Saturated and desaturated colors of #c91b0a

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

#c91b0a Color Usage In CSS

 body {
    color: #c91b0a;
    }
 p {
    color: rgb(201, 27, 10);
    }
 header {
    border-bottom:1px solid #c91b0a;
    }
Recent Random Colors