Random Color Generator

#cd7edf Color

Color Codes
Hex Code #cd7edf
RGB Code rgb(205, 126, 223)
HSL Code hsl(289, 60%, 68%)

#cd7edf Color Syntax

rgb()

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

 main {
    background-color: rgb(205, 126, 223);
   }

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(289, 60%, 68%);
  }

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

RGB Code Hex Code Preview
rgb(205, 126, 223, 10%) #cd7edf1a  
rgb(205, 126, 223, 20%) #cd7edf33  
rgb(205, 126, 223, 40%) #cd7edf4C  
rgb(205, 126, 223, 60%) #cd7edf99  
rgb(205, 126, 223, 80%) #cd7edfCC  
rgb(205, 126, 223, 100%) #cd7edfFF  

Saturated and desaturated colors of #cd7edf

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

#cd7edf Color Usage In CSS

 body {
    color: #cd7edf;
    }
 p {
    color: rgb(205, 126, 223);
    }
 header {
    border-bottom:1px solid #cd7edf;
    }
Recent Random Colors