Random Color Generator

#c0353b Color

Color Codes
Hex Code #c0353b
RGB Code rgb(192, 53, 59)
HSL Code hsl(357, 57%, 48%)

#c0353b Color Syntax

rgb()

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

 main {
    background-color: rgb(192, 53, 59);
   }

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, 57%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(192, 53, 59, 10%) #c0353b1a  
rgb(192, 53, 59, 20%) #c0353b33  
rgb(192, 53, 59, 40%) #c0353b4C  
rgb(192, 53, 59, 60%) #c0353b99  
rgb(192, 53, 59, 80%) #c0353bCC  
rgb(192, 53, 59, 100%) #c0353bFF  

Saturated and desaturated colors of #c0353b

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

#c0353b Color Usage In CSS

 body {
    color: #c0353b;
    }
 p {
    color: rgb(192, 53, 59);
    }
 header {
    border-bottom:1px solid #c0353b;
    }
Recent Random Colors