Random Color Generator

#c86aaf Color

Color Codes
Hex Code #c86aaf
RGB Code rgb(200, 106, 175)
HSL Code hsl(316, 46%, 60%)

#c86aaf Color Syntax

rgb()

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

 main {
    background-color: rgb(200, 106, 175);
   }

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(316, 46%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(200, 106, 175, 10%) #c86aaf1a  
rgb(200, 106, 175, 20%) #c86aaf33  
rgb(200, 106, 175, 40%) #c86aaf4C  
rgb(200, 106, 175, 60%) #c86aaf99  
rgb(200, 106, 175, 80%) #c86aafCC  
rgb(200, 106, 175, 100%) #c86aafFF  

Saturated and desaturated colors of #c86aaf

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

#c86aaf Color Usage In CSS

 body {
    color: #c86aaf;
    }
 p {
    color: rgb(200, 106, 175);
    }
 header {
    border-bottom:1px solid #c86aaf;
    }
Recent Random Colors