Random Color Generator

#c86eb5 Color

Color Codes
Hex Code #c86eb5
RGB Code rgb(200, 110, 181)
HSL Code hsl(313, 45%, 61%)

#c86eb5 Color Syntax

rgb()

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

 main {
    background-color: rgb(200, 110, 181);
   }

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(313, 45%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(200, 110, 181, 10%) #c86eb51a  
rgb(200, 110, 181, 20%) #c86eb533  
rgb(200, 110, 181, 40%) #c86eb54C  
rgb(200, 110, 181, 60%) #c86eb599  
rgb(200, 110, 181, 80%) #c86eb5CC  
rgb(200, 110, 181, 100%) #c86eb5FF  

Saturated and desaturated colors of #c86eb5

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

#c86eb5 Color Usage In CSS

 body {
    color: #c86eb5;
    }
 p {
    color: rgb(200, 110, 181);
    }
 header {
    border-bottom:1px solid #c86eb5;
    }
Recent Random Colors