Random Color Generator

#c5f5f9 Color

Color Codes
Hex Code #c5f5f9
RGB Code rgb(197, 245, 249)
HSL Code hsl(185, 81%, 87%)

#c5f5f9 Color Syntax

rgb()

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

 main {
    background-color: rgb(197, 245, 249);
   }

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(185, 81%, 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 #c5f5f9

RGB Code Hex Code Preview
rgb(197, 245, 249, 10%) #c5f5f91a  
rgb(197, 245, 249, 20%) #c5f5f933  
rgb(197, 245, 249, 40%) #c5f5f94C  
rgb(197, 245, 249, 60%) #c5f5f999  
rgb(197, 245, 249, 80%) #c5f5f9CC  
rgb(197, 245, 249, 100%) #c5f5f9FF  

Saturated and desaturated colors of #c5f5f9

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

#c5f5f9 Color Usage In CSS

 body {
    color: #c5f5f9;
    }
 p {
    color: rgb(197, 245, 249);
    }
 header {
    border-bottom:1px solid #c5f5f9;
    }
Recent Random Colors