Random Color Generator

#f3cefc Color

Color Codes
Hex Code #f3cefc
RGB Code rgb(243, 206, 252)
HSL Code hsl(288, 88%, 90%)

#f3cefc Color Syntax

rgb()

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

 main {
    background-color: rgb(243, 206, 252);
   }

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(288, 88%, 90%);
  }

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

RGB Code Hex Code Preview
rgb(243, 206, 252, 10%) #f3cefc1a  
rgb(243, 206, 252, 20%) #f3cefc33  
rgb(243, 206, 252, 40%) #f3cefc4C  
rgb(243, 206, 252, 60%) #f3cefc99  
rgb(243, 206, 252, 80%) #f3cefcCC  
rgb(243, 206, 252, 100%) #f3cefcFF  

Saturated and desaturated colors of #f3cefc

HSL Code Preview
hsl(288, 10%, 90%)  
hsl(288, 20%, 90%)  
hsl(288, 40%, 90%)  
hsl(288, 60%, 90%)  
hsl(288, 80%, 90%)  
hsl(288, 100%, 90%)  

#f3cefc Color Usage In CSS

 body {
    color: #f3cefc;
    }
 p {
    color: rgb(243, 206, 252);
    }
 header {
    border-bottom:1px solid #f3cefc;
    }
Recent Random Colors