Random Color Generator

#c8324e Color

Color Codes
Hex Code #c8324e
RGB Code rgb(200, 50, 78)
HSL Code hsl(349, 60%, 49%)

#c8324e Color Syntax

rgb()

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

 main {
    background-color: rgb(200, 50, 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(349, 60%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(200, 50, 78, 10%) #c8324e1a  
rgb(200, 50, 78, 20%) #c8324e33  
rgb(200, 50, 78, 40%) #c8324e4C  
rgb(200, 50, 78, 60%) #c8324e99  
rgb(200, 50, 78, 80%) #c8324eCC  
rgb(200, 50, 78, 100%) #c8324eFF  

Saturated and desaturated colors of #c8324e

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

#c8324e Color Usage In CSS

 body {
    color: #c8324e;
    }
 p {
    color: rgb(200, 50, 78);
    }
 header {
    border-bottom:1px solid #c8324e;
    }
Recent Random Colors