Random Color Generator

#cfc8e8 Color

Color Codes
Hex Code #cfc8e8
RGB Code rgb(207, 200, 232)
HSL Code hsl(253, 41%, 85%)

#cfc8e8 Color Syntax

rgb()

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

 main {
    background-color: rgb(207, 200, 232);
   }

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(253, 41%, 85%);
  }

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

RGB Code Hex Code Preview
rgb(207, 200, 232, 10%) #cfc8e81a  
rgb(207, 200, 232, 20%) #cfc8e833  
rgb(207, 200, 232, 40%) #cfc8e84C  
rgb(207, 200, 232, 60%) #cfc8e899  
rgb(207, 200, 232, 80%) #cfc8e8CC  
rgb(207, 200, 232, 100%) #cfc8e8FF  

Saturated and desaturated colors of #cfc8e8

HSL Code Preview
hsl(253, 10%, 85%)  
hsl(253, 20%, 85%)  
hsl(253, 40%, 85%)  
hsl(253, 60%, 85%)  
hsl(253, 80%, 85%)  
hsl(253, 100%, 85%)  

#cfc8e8 Color Usage In CSS

 body {
    color: #cfc8e8;
    }
 p {
    color: rgb(207, 200, 232);
    }
 header {
    border-bottom:1px solid #cfc8e8;
    }
Recent Random Colors