Random Color Generator

#ceefcb Color

Color Codes
Hex Code #ceefcb
RGB Code rgb(206, 239, 203)
HSL Code hsl(115, 53%, 87%)

#ceefcb Color Syntax

rgb()

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

 main {
    background-color: rgb(206, 239, 203);
   }

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(115, 53%, 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 #ceefcb

RGB Code Hex Code Preview
rgb(206, 239, 203, 10%) #ceefcb1a  
rgb(206, 239, 203, 20%) #ceefcb33  
rgb(206, 239, 203, 40%) #ceefcb4C  
rgb(206, 239, 203, 60%) #ceefcb99  
rgb(206, 239, 203, 80%) #ceefcbCC  
rgb(206, 239, 203, 100%) #ceefcbFF  

Saturated and desaturated colors of #ceefcb

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

#ceefcb Color Usage In CSS

 body {
    color: #ceefcb;
    }
 p {
    color: rgb(206, 239, 203);
    }
 header {
    border-bottom:1px solid #ceefcb;
    }
Recent Random Colors