Random Color Generator

#7087be Color

Color Codes
Hex Code #7087be
RGB Code rgb(112, 135, 190)
HSL Code hsl(222, 38%, 59%)

#7087be Color Syntax

rgb()

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

 main {
    background-color: rgb(112, 135, 190);
   }

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, 38%, 59%);
  }

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 #7087be

RGB Code Hex Code Preview
rgb(112, 135, 190, 10%) #7087be1a  
rgb(112, 135, 190, 20%) #7087be33  
rgb(112, 135, 190, 40%) #7087be4C  
rgb(112, 135, 190, 60%) #7087be99  
rgb(112, 135, 190, 80%) #7087beCC  
rgb(112, 135, 190, 100%) #7087beFF  

Saturated and desaturated colors of #7087be

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

#7087be Color Usage In CSS

 body {
    color: #7087be;
    }
 p {
    color: rgb(112, 135, 190);
    }
 header {
    border-bottom:1px solid #7087be;
    }
Recent Random Colors