Random Color Generator

#cdeaf3 Color

Color Codes
Hex Code #cdeaf3
RGB Code rgb(205, 234, 243)
HSL Code hsl(194, 61%, 88%)

#cdeaf3 Color Syntax

rgb()

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

 main {
    background-color: rgb(205, 234, 243);
   }

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(194, 61%, 88%);
  }

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

RGB Code Hex Code Preview
rgb(205, 234, 243, 10%) #cdeaf31a  
rgb(205, 234, 243, 20%) #cdeaf333  
rgb(205, 234, 243, 40%) #cdeaf34C  
rgb(205, 234, 243, 60%) #cdeaf399  
rgb(205, 234, 243, 80%) #cdeaf3CC  
rgb(205, 234, 243, 100%) #cdeaf3FF  

Saturated and desaturated colors of #cdeaf3

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

#cdeaf3 Color Usage In CSS

 body {
    color: #cdeaf3;
    }
 p {
    color: rgb(205, 234, 243);
    }
 header {
    border-bottom:1px solid #cdeaf3;
    }
Recent Random Colors