Random Color Generator

#c4d9e4 Color

Color Codes
Hex Code #c4d9e4
RGB Code rgb(196, 217, 228)
HSL Code hsl(201, 37%, 83%)

#c4d9e4 Color Syntax

rgb()

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

 main {
    background-color: rgb(196, 217, 228);
   }

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(201, 37%, 83%);
  }

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

RGB Code Hex Code Preview
rgb(196, 217, 228, 10%) #c4d9e41a  
rgb(196, 217, 228, 20%) #c4d9e433  
rgb(196, 217, 228, 40%) #c4d9e44C  
rgb(196, 217, 228, 60%) #c4d9e499  
rgb(196, 217, 228, 80%) #c4d9e4CC  
rgb(196, 217, 228, 100%) #c4d9e4FF  

Saturated and desaturated colors of #c4d9e4

HSL Code Preview
hsl(201, 10%, 83%)  
hsl(201, 20%, 83%)  
hsl(201, 40%, 83%)  
hsl(201, 60%, 83%)  
hsl(201, 80%, 83%)  
hsl(201, 100%, 83%)  

#c4d9e4 Color Usage In CSS

 body {
    color: #c4d9e4;
    }
 p {
    color: rgb(196, 217, 228);
    }
 header {
    border-bottom:1px solid #c4d9e4;
    }
Recent Random Colors