Random Color Generator

#c87d87 Color

Color Codes
Hex Code #c87d87
RGB Code rgb(200, 125, 135)
HSL Code hsl(352, 41%, 64%)

#c87d87 Color Syntax

rgb()

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

 main {
    background-color: rgb(200, 125, 135);
   }

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(352, 41%, 64%);
  }

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

RGB Code Hex Code Preview
rgb(200, 125, 135, 10%) #c87d871a  
rgb(200, 125, 135, 20%) #c87d8733  
rgb(200, 125, 135, 40%) #c87d874C  
rgb(200, 125, 135, 60%) #c87d8799  
rgb(200, 125, 135, 80%) #c87d87CC  
rgb(200, 125, 135, 100%) #c87d87FF  

Saturated and desaturated colors of #c87d87

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

#c87d87 Color Usage In CSS

 body {
    color: #c87d87;
    }
 p {
    color: rgb(200, 125, 135);
    }
 header {
    border-bottom:1px solid #c87d87;
    }
Recent Random Colors