Random Color Generator

#c35040 Color

Color Codes
Hex Code #c35040
RGB Code rgb(195, 80, 64)
HSL Code hsl(7, 52%, 51%)

#c35040 Color Syntax

rgb()

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

 main {
    background-color: rgb(195, 80, 64);
   }

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(7, 52%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(195, 80, 64, 10%) #c350401a  
rgb(195, 80, 64, 20%) #c3504033  
rgb(195, 80, 64, 40%) #c350404C  
rgb(195, 80, 64, 60%) #c3504099  
rgb(195, 80, 64, 80%) #c35040CC  
rgb(195, 80, 64, 100%) #c35040FF  

Saturated and desaturated colors of #c35040

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

#c35040 Color Usage In CSS

 body {
    color: #c35040;
    }
 p {
    color: rgb(195, 80, 64);
    }
 header {
    border-bottom:1px solid #c35040;
    }
Recent Random Colors