Random Color Generator

#c44531 Color

Color Codes
Hex Code #c44531
RGB Code rgb(196, 69, 49)
HSL Code hsl(8, 60%, 48%)

#c44531 Color Syntax

rgb()

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

 main {
    background-color: rgb(196, 69, 49);
   }

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(8, 60%, 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 #c44531

RGB Code Hex Code Preview
rgb(196, 69, 49, 10%) #c445311a  
rgb(196, 69, 49, 20%) #c4453133  
rgb(196, 69, 49, 40%) #c445314C  
rgb(196, 69, 49, 60%) #c4453199  
rgb(196, 69, 49, 80%) #c44531CC  
rgb(196, 69, 49, 100%) #c44531FF  

Saturated and desaturated colors of #c44531

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

#c44531 Color Usage In CSS

 body {
    color: #c44531;
    }
 p {
    color: rgb(196, 69, 49);
    }
 header {
    border-bottom:1px solid #c44531;
    }
Recent Random Colors