Random Color Generator

#cf6ede Color

Color Codes
Hex Code #cf6ede
RGB Code rgb(207, 110, 222)
HSL Code hsl(292, 63%, 65%)

#cf6ede Color Syntax

rgb()

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

 main {
    background-color: rgb(207, 110, 222);
   }

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(292, 63%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(207, 110, 222, 10%) #cf6ede1a  
rgb(207, 110, 222, 20%) #cf6ede33  
rgb(207, 110, 222, 40%) #cf6ede4C  
rgb(207, 110, 222, 60%) #cf6ede99  
rgb(207, 110, 222, 80%) #cf6edeCC  
rgb(207, 110, 222, 100%) #cf6edeFF  

Saturated and desaturated colors of #cf6ede

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

#cf6ede Color Usage In CSS

 body {
    color: #cf6ede;
    }
 p {
    color: rgb(207, 110, 222);
    }
 header {
    border-bottom:1px solid #cf6ede;
    }
Recent Random Colors