Random Color Generator

#c54450 Color

Color Codes
Hex Code #c54450
RGB Code rgb(197, 68, 80)
HSL Code hsl(354, 53%, 52%)

#c54450 Color Syntax

rgb()

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

 main {
    background-color: rgb(197, 68, 80);
   }

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(354, 53%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(197, 68, 80, 10%) #c544501a  
rgb(197, 68, 80, 20%) #c5445033  
rgb(197, 68, 80, 40%) #c544504C  
rgb(197, 68, 80, 60%) #c5445099  
rgb(197, 68, 80, 80%) #c54450CC  
rgb(197, 68, 80, 100%) #c54450FF  

Saturated and desaturated colors of #c54450

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

#c54450 Color Usage In CSS

 body {
    color: #c54450;
    }
 p {
    color: rgb(197, 68, 80);
    }
 header {
    border-bottom:1px solid #c54450;
    }
Recent Random Colors