Random Color Generator

#a5d4dc Color

Color Codes
Hex Code #a5d4dc
RGB Code rgb(165, 212, 220)
HSL Code hsl(189, 44%, 75%)

#a5d4dc Color Syntax

rgb()

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

 main {
    background-color: rgb(165, 212, 220);
   }

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(189, 44%, 75%);
  }

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

RGB Code Hex Code Preview
rgb(165, 212, 220, 10%) #a5d4dc1a  
rgb(165, 212, 220, 20%) #a5d4dc33  
rgb(165, 212, 220, 40%) #a5d4dc4C  
rgb(165, 212, 220, 60%) #a5d4dc99  
rgb(165, 212, 220, 80%) #a5d4dcCC  
rgb(165, 212, 220, 100%) #a5d4dcFF  

Saturated and desaturated colors of #a5d4dc

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

#a5d4dc Color Usage In CSS

 body {
    color: #a5d4dc;
    }
 p {
    color: rgb(165, 212, 220);
    }
 header {
    border-bottom:1px solid #a5d4dc;
    }
Recent Random Colors