Random Color Generator

#c4709d Color

Color Codes
Hex Code #c4709d
RGB Code rgb(196, 112, 157)
HSL Code hsl(328, 42%, 60%)

#c4709d Color Syntax

rgb()

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

 main {
    background-color: rgb(196, 112, 157);
   }

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(328, 42%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(196, 112, 157, 10%) #c4709d1a  
rgb(196, 112, 157, 20%) #c4709d33  
rgb(196, 112, 157, 40%) #c4709d4C  
rgb(196, 112, 157, 60%) #c4709d99  
rgb(196, 112, 157, 80%) #c4709dCC  
rgb(196, 112, 157, 100%) #c4709dFF  

Saturated and desaturated colors of #c4709d

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

#c4709d Color Usage In CSS

 body {
    color: #c4709d;
    }
 p {
    color: rgb(196, 112, 157);
    }
 header {
    border-bottom:1px solid #c4709d;
    }
Recent Random Colors