Random Color Generator

#cbc1fe Color

Color Codes
Hex Code #cbc1fe
RGB Code rgb(203, 193, 254)
HSL Code hsl(250, 97%, 88%)

#cbc1fe Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 193, 254);
   }

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(250, 97%, 88%);
  }

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

RGB Code Hex Code Preview
rgb(203, 193, 254, 10%) #cbc1fe1a  
rgb(203, 193, 254, 20%) #cbc1fe33  
rgb(203, 193, 254, 40%) #cbc1fe4C  
rgb(203, 193, 254, 60%) #cbc1fe99  
rgb(203, 193, 254, 80%) #cbc1feCC  
rgb(203, 193, 254, 100%) #cbc1feFF  

Saturated and desaturated colors of #cbc1fe

HSL Code Preview
hsl(250, 10%, 88%)  
hsl(250, 20%, 88%)  
hsl(250, 40%, 88%)  
hsl(250, 60%, 88%)  
hsl(250, 80%, 88%)  
hsl(250, 100%, 88%)  

#cbc1fe Color Usage In CSS

 body {
    color: #cbc1fe;
    }
 p {
    color: rgb(203, 193, 254);
    }
 header {
    border-bottom:1px solid #cbc1fe;
    }
Recent Random Colors