Random Color Generator

#a5becc Color

Color Codes
Hex Code #a5becc
RGB Code rgb(165, 190, 204)
HSL Code hsl(202, 28%, 72%)

#a5becc Color Syntax

rgb()

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

 main {
    background-color: rgb(165, 190, 204);
   }

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(202, 28%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(165, 190, 204, 10%) #a5becc1a  
rgb(165, 190, 204, 20%) #a5becc33  
rgb(165, 190, 204, 40%) #a5becc4C  
rgb(165, 190, 204, 60%) #a5becc99  
rgb(165, 190, 204, 80%) #a5beccCC  
rgb(165, 190, 204, 100%) #a5beccFF  

Saturated and desaturated colors of #a5becc

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

#a5becc Color Usage In CSS

 body {
    color: #a5becc;
    }
 p {
    color: rgb(165, 190, 204);
    }
 header {
    border-bottom:1px solid #a5becc;
    }
Recent Random Colors