Random Color Generator

#c0332a Color

Color Codes
Hex Code #c0332a
RGB Code rgb(192, 51, 42)
HSL Code hsl(4, 64%, 46%)

#c0332a Color Syntax

rgb()

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

 main {
    background-color: rgb(192, 51, 42);
   }

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(4, 64%, 46%);
  }

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

RGB Code Hex Code Preview
rgb(192, 51, 42, 10%) #c0332a1a  
rgb(192, 51, 42, 20%) #c0332a33  
rgb(192, 51, 42, 40%) #c0332a4C  
rgb(192, 51, 42, 60%) #c0332a99  
rgb(192, 51, 42, 80%) #c0332aCC  
rgb(192, 51, 42, 100%) #c0332aFF  

Saturated and desaturated colors of #c0332a

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

#c0332a Color Usage In CSS

 body {
    color: #c0332a;
    }
 p {
    color: rgb(192, 51, 42);
    }
 header {
    border-bottom:1px solid #c0332a;
    }
Recent Random Colors