Random Color Generator

#a5c0f3 Color

Color Codes
Hex Code #a5c0f3
RGB Code rgb(165, 192, 243)
HSL Code hsl(219, 76%, 80%)

#a5c0f3 Color Syntax

rgb()

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

 main {
    background-color: rgb(165, 192, 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(219, 76%, 80%);
  }

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

RGB Code Hex Code Preview
rgb(165, 192, 243, 10%) #a5c0f31a  
rgb(165, 192, 243, 20%) #a5c0f333  
rgb(165, 192, 243, 40%) #a5c0f34C  
rgb(165, 192, 243, 60%) #a5c0f399  
rgb(165, 192, 243, 80%) #a5c0f3CC  
rgb(165, 192, 243, 100%) #a5c0f3FF  

Saturated and desaturated colors of #a5c0f3

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

#a5c0f3 Color Usage In CSS

 body {
    color: #a5c0f3;
    }
 p {
    color: rgb(165, 192, 243);
    }
 header {
    border-bottom:1px solid #a5c0f3;
    }
Recent Random Colors