Random Color Generator

#bdcfe2 Color

Color Codes
Hex Code #bdcfe2
RGB Code rgb(189, 207, 226)
HSL Code hsl(211, 39%, 81%)

#bdcfe2 Color Syntax

rgb()

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

 main {
    background-color: rgb(189, 207, 226);
   }

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(211, 39%, 81%);
  }

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

RGB Code Hex Code Preview
rgb(189, 207, 226, 10%) #bdcfe21a  
rgb(189, 207, 226, 20%) #bdcfe233  
rgb(189, 207, 226, 40%) #bdcfe24C  
rgb(189, 207, 226, 60%) #bdcfe299  
rgb(189, 207, 226, 80%) #bdcfe2CC  
rgb(189, 207, 226, 100%) #bdcfe2FF  

Saturated and desaturated colors of #bdcfe2

HSL Code Preview
hsl(211, 10%, 81%)  
hsl(211, 20%, 81%)  
hsl(211, 40%, 81%)  
hsl(211, 60%, 81%)  
hsl(211, 80%, 81%)  
hsl(211, 100%, 81%)  

#bdcfe2 Color Usage In CSS

 body {
    color: #bdcfe2;
    }
 p {
    color: rgb(189, 207, 226);
    }
 header {
    border-bottom:1px solid #bdcfe2;
    }
Recent Random Colors