Random Color Generator

#b1cdfe Color

Color Codes
Hex Code #b1cdfe
RGB Code rgb(177, 205, 254)
HSL Code hsl(218, 97%, 85%)

#b1cdfe Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 205, 254);
   }

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(218, 97%, 85%);
  }

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

RGB Code Hex Code Preview
rgb(177, 205, 254, 10%) #b1cdfe1a  
rgb(177, 205, 254, 20%) #b1cdfe33  
rgb(177, 205, 254, 40%) #b1cdfe4C  
rgb(177, 205, 254, 60%) #b1cdfe99  
rgb(177, 205, 254, 80%) #b1cdfeCC  
rgb(177, 205, 254, 100%) #b1cdfeFF  

Saturated and desaturated colors of #b1cdfe

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

#b1cdfe Color Usage In CSS

 body {
    color: #b1cdfe;
    }
 p {
    color: rgb(177, 205, 254);
    }
 header {
    border-bottom:1px solid #b1cdfe;
    }
Recent Random Colors