Random Color Generator

#cc5448 Color

Color Codes
Hex Code #cc5448
RGB Code rgb(204, 84, 72)
HSL Code hsl(5, 56%, 54%)

#cc5448 Color Syntax

rgb()

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

 main {
    background-color: rgb(204, 84, 72);
   }

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, 56%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(204, 84, 72, 10%) #cc54481a  
rgb(204, 84, 72, 20%) #cc544833  
rgb(204, 84, 72, 40%) #cc54484C  
rgb(204, 84, 72, 60%) #cc544899  
rgb(204, 84, 72, 80%) #cc5448CC  
rgb(204, 84, 72, 100%) #cc5448FF  

Saturated and desaturated colors of #cc5448

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

#cc5448 Color Usage In CSS

 body {
    color: #cc5448;
    }
 p {
    color: rgb(204, 84, 72);
    }
 header {
    border-bottom:1px solid #cc5448;
    }
Recent Random Colors