Random Color Generator

#bfcafb Color

Color Codes
Hex Code #bfcafb
RGB Code rgb(191, 202, 251)
HSL Code hsl(229, 88%, 87%)

#bfcafb Color Syntax

rgb()

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

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

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(229, 88%, 87%);
  }

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

RGB Code Hex Code Preview
rgb(191, 202, 251, 10%) #bfcafb1a  
rgb(191, 202, 251, 20%) #bfcafb33  
rgb(191, 202, 251, 40%) #bfcafb4C  
rgb(191, 202, 251, 60%) #bfcafb99  
rgb(191, 202, 251, 80%) #bfcafbCC  
rgb(191, 202, 251, 100%) #bfcafbFF  

Saturated and desaturated colors of #bfcafb

HSL Code Preview
hsl(229, 10%, 87%)  
hsl(229, 20%, 87%)  
hsl(229, 40%, 87%)  
hsl(229, 60%, 87%)  
hsl(229, 80%, 87%)  
hsl(229, 100%, 87%)  

#bfcafb Color Usage In CSS

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