Random Color Generator

#c7867f Color

Color Codes
Hex Code #c7867f
RGB Code rgb(199, 134, 127)
HSL Code hsl(6, 39%, 64%)

#c7867f Color Syntax

rgb()

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

 main {
    background-color: rgb(199, 134, 127);
   }

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(6, 39%, 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 #c7867f

RGB Code Hex Code Preview
rgb(199, 134, 127, 10%) #c7867f1a  
rgb(199, 134, 127, 20%) #c7867f33  
rgb(199, 134, 127, 40%) #c7867f4C  
rgb(199, 134, 127, 60%) #c7867f99  
rgb(199, 134, 127, 80%) #c7867fCC  
rgb(199, 134, 127, 100%) #c7867fFF  

Saturated and desaturated colors of #c7867f

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

#c7867f Color Usage In CSS

 body {
    color: #c7867f;
    }
 p {
    color: rgb(199, 134, 127);
    }
 header {
    border-bottom:1px solid #c7867f;
    }
Recent Random Colors