Random Color Generator

#bae0fb Color

Color Codes
Hex Code #bae0fb
RGB Code rgb(186, 224, 251)
HSL Code hsl(205, 89%, 86%)

#bae0fb Color Syntax

rgb()

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

 main {
    background-color: rgb(186, 224, 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(205, 89%, 86%);
  }

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

RGB Code Hex Code Preview
rgb(186, 224, 251, 10%) #bae0fb1a  
rgb(186, 224, 251, 20%) #bae0fb33  
rgb(186, 224, 251, 40%) #bae0fb4C  
rgb(186, 224, 251, 60%) #bae0fb99  
rgb(186, 224, 251, 80%) #bae0fbCC  
rgb(186, 224, 251, 100%) #bae0fbFF  

Saturated and desaturated colors of #bae0fb

HSL Code Preview
hsl(205, 10%, 86%)  
hsl(205, 20%, 86%)  
hsl(205, 40%, 86%)  
hsl(205, 60%, 86%)  
hsl(205, 80%, 86%)  
hsl(205, 100%, 86%)  

#bae0fb Color Usage In CSS

 body {
    color: #bae0fb;
    }
 p {
    color: rgb(186, 224, 251);
    }
 header {
    border-bottom:1px solid #bae0fb;
    }
Recent Random Colors