Random Color Generator

#c81344 Color

Color Codes
Hex Code #c81344
RGB Code rgb(200, 19, 68)
HSL Code hsl(344, 83%, 43%)

#c81344 Color Syntax

rgb()

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

 main {
    background-color: rgb(200, 19, 68);
   }

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(344, 83%, 43%);
  }

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

RGB Code Hex Code Preview
rgb(200, 19, 68, 10%) #c813441a  
rgb(200, 19, 68, 20%) #c8134433  
rgb(200, 19, 68, 40%) #c813444C  
rgb(200, 19, 68, 60%) #c8134499  
rgb(200, 19, 68, 80%) #c81344CC  
rgb(200, 19, 68, 100%) #c81344FF  

Saturated and desaturated colors of #c81344

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

#c81344 Color Usage In CSS

 body {
    color: #c81344;
    }
 p {
    color: rgb(200, 19, 68);
    }
 header {
    border-bottom:1px solid #c81344;
    }
Recent Random Colors