Random Color Generator

#1576e7 Color

Color Codes
Hex Code #1576e7
RGB Code rgb(21, 118, 231)
HSL Code hsl(212, 83%, 49%)

#1576e7 Color Syntax

rgb()

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

 main {
    background-color: rgb(21, 118, 231);
   }

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(212, 83%, 49%);
  }

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 #1576e7

RGB Code Hex Code Preview
rgb(21, 118, 231, 10%) #1576e71a  
rgb(21, 118, 231, 20%) #1576e733  
rgb(21, 118, 231, 40%) #1576e74C  
rgb(21, 118, 231, 60%) #1576e799  
rgb(21, 118, 231, 80%) #1576e7CC  
rgb(21, 118, 231, 100%) #1576e7FF  

Saturated and desaturated colors of #1576e7

HSL Code Preview
hsl(212, 10%, 49%)  
hsl(212, 20%, 49%)  
hsl(212, 40%, 49%)  
hsl(212, 60%, 49%)  
hsl(212, 80%, 49%)  
hsl(212, 100%, 49%)  

#1576e7 Color Usage In CSS

 body {
    color: #1576e7;
    }
 p {
    color: rgb(21, 118, 231);
    }
 header {
    border-bottom:1px solid #1576e7;
    }
Recent Random Colors