Random Color Generator

#c6ebdd Color

Color Codes
Hex Code #c6ebdd
RGB Code rgb(198, 235, 221)
HSL Code hsl(157, 48%, 85%)

#c6ebdd Color Syntax

rgb()

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

 main {
    background-color: rgb(198, 235, 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, 48%, 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 #c6ebdd

RGB Code Hex Code Preview
rgb(198, 235, 221, 10%) #c6ebdd1a  
rgb(198, 235, 221, 20%) #c6ebdd33  
rgb(198, 235, 221, 40%) #c6ebdd4C  
rgb(198, 235, 221, 60%) #c6ebdd99  
rgb(198, 235, 221, 80%) #c6ebddCC  
rgb(198, 235, 221, 100%) #c6ebddFF  

Saturated and desaturated colors of #c6ebdd

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%)  

#c6ebdd Color Usage In CSS

 body {
    color: #c6ebdd;
    }
 p {
    color: rgb(198, 235, 221);
    }
 header {
    border-bottom:1px solid #c6ebdd;
    }
Recent Random Colors