Random Color Generator

#cbe8dd Color

Color Codes
Hex Code #cbe8dd
RGB Code rgb(203, 232, 221)
HSL Code hsl(157, 39%, 85%)

#cbe8dd Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 232, 221);
   }

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(157, 39%, 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 #cbe8dd

RGB Code Hex Code Preview
rgb(203, 232, 221, 10%) #cbe8dd1a  
rgb(203, 232, 221, 20%) #cbe8dd33  
rgb(203, 232, 221, 40%) #cbe8dd4C  
rgb(203, 232, 221, 60%) #cbe8dd99  
rgb(203, 232, 221, 80%) #cbe8ddCC  
rgb(203, 232, 221, 100%) #cbe8ddFF  

Saturated and desaturated colors of #cbe8dd

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

#cbe8dd Color Usage In CSS

 body {
    color: #cbe8dd;
    }
 p {
    color: rgb(203, 232, 221);
    }
 header {
    border-bottom:1px solid #cbe8dd;
    }
Recent Random Colors