Random Color Generator

#c4574e Color

Color Codes
Hex Code #c4574e
RGB Code rgb(196, 87, 78)
HSL Code hsl(5, 50%, 54%)

#c4574e Color Syntax

rgb()

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

 main {
    background-color: rgb(196, 87, 78);
   }

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, 50%, 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 #c4574e

RGB Code Hex Code Preview
rgb(196, 87, 78, 10%) #c4574e1a  
rgb(196, 87, 78, 20%) #c4574e33  
rgb(196, 87, 78, 40%) #c4574e4C  
rgb(196, 87, 78, 60%) #c4574e99  
rgb(196, 87, 78, 80%) #c4574eCC  
rgb(196, 87, 78, 100%) #c4574eFF  

Saturated and desaturated colors of #c4574e

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%)  

#c4574e Color Usage In CSS

 body {
    color: #c4574e;
    }
 p {
    color: rgb(196, 87, 78);
    }
 header {
    border-bottom:1px solid #c4574e;
    }
Recent Random Colors