Random Color Generator

#87a5ea Color

Color Codes
Hex Code #87a5ea
RGB Code rgb(135, 165, 234)
HSL Code hsl(222, 70%, 72%)

#87a5ea Color Syntax

rgb()

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

 main {
    background-color: rgb(135, 165, 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(222, 70%, 72%);
  }

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 #87a5ea

RGB Code Hex Code Preview
rgb(135, 165, 234, 10%) #87a5ea1a  
rgb(135, 165, 234, 20%) #87a5ea33  
rgb(135, 165, 234, 40%) #87a5ea4C  
rgb(135, 165, 234, 60%) #87a5ea99  
rgb(135, 165, 234, 80%) #87a5eaCC  
rgb(135, 165, 234, 100%) #87a5eaFF  

Saturated and desaturated colors of #87a5ea

HSL Code Preview
hsl(222, 10%, 72%)  
hsl(222, 20%, 72%)  
hsl(222, 40%, 72%)  
hsl(222, 60%, 72%)  
hsl(222, 80%, 72%)  
hsl(222, 100%, 72%)  

#87a5ea Color Usage In CSS

 body {
    color: #87a5ea;
    }
 p {
    color: rgb(135, 165, 234);
    }
 header {
    border-bottom:1px solid #87a5ea;
    }
Recent Random Colors