Random Color Generator

#a1b9da Color

Color Codes
Hex Code #a1b9da
RGB Code rgb(161, 185, 218)
HSL Code hsl(215, 44%, 74%)

#a1b9da Color Syntax

rgb()

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

 main {
    background-color: rgb(161, 185, 218);
   }

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(215, 44%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(161, 185, 218, 10%) #a1b9da1a  
rgb(161, 185, 218, 20%) #a1b9da33  
rgb(161, 185, 218, 40%) #a1b9da4C  
rgb(161, 185, 218, 60%) #a1b9da99  
rgb(161, 185, 218, 80%) #a1b9daCC  
rgb(161, 185, 218, 100%) #a1b9daFF  

Saturated and desaturated colors of #a1b9da

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

#a1b9da Color Usage In CSS

 body {
    color: #a1b9da;
    }
 p {
    color: rgb(161, 185, 218);
    }
 header {
    border-bottom:1px solid #a1b9da;
    }
Recent Random Colors