Random Color Generator

#cfebac Color

Color Codes
Hex Code #cfebac
RGB Code rgb(207, 235, 172)
HSL Code hsl(87, 61%, 80%)

#cfebac Color Syntax

rgb()

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

 main {
    background-color: rgb(207, 235, 172);
   }

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(87, 61%, 80%);
  }

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

RGB Code Hex Code Preview
rgb(207, 235, 172, 10%) #cfebac1a  
rgb(207, 235, 172, 20%) #cfebac33  
rgb(207, 235, 172, 40%) #cfebac4C  
rgb(207, 235, 172, 60%) #cfebac99  
rgb(207, 235, 172, 80%) #cfebacCC  
rgb(207, 235, 172, 100%) #cfebacFF  

Saturated and desaturated colors of #cfebac

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

#cfebac Color Usage In CSS

 body {
    color: #cfebac;
    }
 p {
    color: rgb(207, 235, 172);
    }
 header {
    border-bottom:1px solid #cfebac;
    }
Recent Random Colors