Random Color Generator

#2882b7 Color

Color Codes
Hex Code #2882b7
RGB Code rgb(40, 130, 183)
HSL Code hsl(202, 64%, 44%)

#2882b7 Color Syntax

rgb()

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

 main {
    background-color: rgb(40, 130, 183);
   }

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(202, 64%, 44%);
  }

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 #2882b7

RGB Code Hex Code Preview
rgb(40, 130, 183, 10%) #2882b71a  
rgb(40, 130, 183, 20%) #2882b733  
rgb(40, 130, 183, 40%) #2882b74C  
rgb(40, 130, 183, 60%) #2882b799  
rgb(40, 130, 183, 80%) #2882b7CC  
rgb(40, 130, 183, 100%) #2882b7FF  

Saturated and desaturated colors of #2882b7

HSL Code Preview
hsl(202, 10%, 44%)  
hsl(202, 20%, 44%)  
hsl(202, 40%, 44%)  
hsl(202, 60%, 44%)  
hsl(202, 80%, 44%)  
hsl(202, 100%, 44%)  

#2882b7 Color Usage In CSS

 body {
    color: #2882b7;
    }
 p {
    color: rgb(40, 130, 183);
    }
 header {
    border-bottom:1px solid #2882b7;
    }
Recent Random Colors