Random Color Generator

#fbb5ea Color

Color Codes
Hex Code #fbb5ea
RGB Code rgb(251, 181, 234)
HSL Code hsl(315, 90%, 85%)

#fbb5ea Color Syntax

rgb()

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

 main {
    background-color: rgb(251, 181, 234);
   }

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(315, 90%, 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 #fbb5ea

RGB Code Hex Code Preview
rgb(251, 181, 234, 10%) #fbb5ea1a  
rgb(251, 181, 234, 20%) #fbb5ea33  
rgb(251, 181, 234, 40%) #fbb5ea4C  
rgb(251, 181, 234, 60%) #fbb5ea99  
rgb(251, 181, 234, 80%) #fbb5eaCC  
rgb(251, 181, 234, 100%) #fbb5eaFF  

Saturated and desaturated colors of #fbb5ea

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

#fbb5ea Color Usage In CSS

 body {
    color: #fbb5ea;
    }
 p {
    color: rgb(251, 181, 234);
    }
 header {
    border-bottom:1px solid #fbb5ea;
    }
Recent Random Colors