Random Color Generator

#cf93fb Color

Color Codes
Hex Code #cf93fb
RGB Code rgb(207, 147, 251)
HSL Code hsl(275, 93%, 78%)

#cf93fb Color Syntax

rgb()

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

 main {
    background-color: rgb(207, 147, 251);
   }

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(275, 93%, 78%);
  }

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

RGB Code Hex Code Preview
rgb(207, 147, 251, 10%) #cf93fb1a  
rgb(207, 147, 251, 20%) #cf93fb33  
rgb(207, 147, 251, 40%) #cf93fb4C  
rgb(207, 147, 251, 60%) #cf93fb99  
rgb(207, 147, 251, 80%) #cf93fbCC  
rgb(207, 147, 251, 100%) #cf93fbFF  

Saturated and desaturated colors of #cf93fb

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

#cf93fb Color Usage In CSS

 body {
    color: #cf93fb;
    }
 p {
    color: rgb(207, 147, 251);
    }
 header {
    border-bottom:1px solid #cf93fb;
    }
Recent Random Colors