Random Color Generator

#b1bfca Color

Color Codes
Hex Code #b1bfca
RGB Code rgb(177, 191, 202)
HSL Code hsl(206, 19%, 74%)

#b1bfca Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 191, 202);
   }

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(206, 19%, 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 #b1bfca

RGB Code Hex Code Preview
rgb(177, 191, 202, 10%) #b1bfca1a  
rgb(177, 191, 202, 20%) #b1bfca33  
rgb(177, 191, 202, 40%) #b1bfca4C  
rgb(177, 191, 202, 60%) #b1bfca99  
rgb(177, 191, 202, 80%) #b1bfcaCC  
rgb(177, 191, 202, 100%) #b1bfcaFF  

Saturated and desaturated colors of #b1bfca

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

#b1bfca Color Usage In CSS

 body {
    color: #b1bfca;
    }
 p {
    color: rgb(177, 191, 202);
    }
 header {
    border-bottom:1px solid #b1bfca;
    }
Recent Random Colors