Random Color Generator

#c69fe9 Color

Color Codes
Hex Code #c69fe9
RGB Code rgb(198, 159, 233)
HSL Code hsl(272, 63%, 77%)

#c69fe9 Color Syntax

rgb()

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

 main {
    background-color: rgb(198, 159, 233);
   }

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(272, 63%, 77%);
  }

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

RGB Code Hex Code Preview
rgb(198, 159, 233, 10%) #c69fe91a  
rgb(198, 159, 233, 20%) #c69fe933  
rgb(198, 159, 233, 40%) #c69fe94C  
rgb(198, 159, 233, 60%) #c69fe999  
rgb(198, 159, 233, 80%) #c69fe9CC  
rgb(198, 159, 233, 100%) #c69fe9FF  

Saturated and desaturated colors of #c69fe9

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

#c69fe9 Color Usage In CSS

 body {
    color: #c69fe9;
    }
 p {
    color: rgb(198, 159, 233);
    }
 header {
    border-bottom:1px solid #c69fe9;
    }
Recent Random Colors