Random Color Generator

#cefdc1 Color

Color Codes
Hex Code #cefdc1
RGB Code rgb(206, 253, 193)
HSL Code hsl(107, 94%, 87%)

#cefdc1 Color Syntax

rgb()

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

 main {
    background-color: rgb(206, 253, 193);
   }

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(107, 94%, 87%);
  }

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

RGB Code Hex Code Preview
rgb(206, 253, 193, 10%) #cefdc11a  
rgb(206, 253, 193, 20%) #cefdc133  
rgb(206, 253, 193, 40%) #cefdc14C  
rgb(206, 253, 193, 60%) #cefdc199  
rgb(206, 253, 193, 80%) #cefdc1CC  
rgb(206, 253, 193, 100%) #cefdc1FF  

Saturated and desaturated colors of #cefdc1

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

#cefdc1 Color Usage In CSS

 body {
    color: #cefdc1;
    }
 p {
    color: rgb(206, 253, 193);
    }
 header {
    border-bottom:1px solid #cefdc1;
    }
Recent Random Colors