Random Color Generator

#c75571 Color

Color Codes
Hex Code #c75571
RGB Code rgb(199, 85, 113)
HSL Code hsl(345, 50%, 56%)

#c75571 Color Syntax

rgb()

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

 main {
    background-color: rgb(199, 85, 113);
   }

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(345, 50%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(199, 85, 113, 10%) #c755711a  
rgb(199, 85, 113, 20%) #c7557133  
rgb(199, 85, 113, 40%) #c755714C  
rgb(199, 85, 113, 60%) #c7557199  
rgb(199, 85, 113, 80%) #c75571CC  
rgb(199, 85, 113, 100%) #c75571FF  

Saturated and desaturated colors of #c75571

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

#c75571 Color Usage In CSS

 body {
    color: #c75571;
    }
 p {
    color: rgb(199, 85, 113);
    }
 header {
    border-bottom:1px solid #c75571;
    }
Recent Random Colors