Random Color Generator

#a7eafc Color

Color Codes
Hex Code #a7eafc
RGB Code rgb(167, 234, 252)
HSL Code hsl(193, 93%, 82%)

#a7eafc Color Syntax

rgb()

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

 main {
    background-color: rgb(167, 234, 252);
   }

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(193, 93%, 82%);
  }

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

RGB Code Hex Code Preview
rgb(167, 234, 252, 10%) #a7eafc1a  
rgb(167, 234, 252, 20%) #a7eafc33  
rgb(167, 234, 252, 40%) #a7eafc4C  
rgb(167, 234, 252, 60%) #a7eafc99  
rgb(167, 234, 252, 80%) #a7eafcCC  
rgb(167, 234, 252, 100%) #a7eafcFF  

Saturated and desaturated colors of #a7eafc

HSL Code Preview
hsl(193, 10%, 82%)  
hsl(193, 20%, 82%)  
hsl(193, 40%, 82%)  
hsl(193, 60%, 82%)  
hsl(193, 80%, 82%)  
hsl(193, 100%, 82%)  

#a7eafc Color Usage In CSS

 body {
    color: #a7eafc;
    }
 p {
    color: rgb(167, 234, 252);
    }
 header {
    border-bottom:1px solid #a7eafc;
    }
Recent Random Colors