Random Color Generator

#4a82e2 Color

Color Codes
Hex Code #4a82e2
RGB Code rgb(74, 130, 226)
HSL Code hsl(218, 72%, 59%)

#4a82e2 Color Syntax

rgb()

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

 main {
    background-color: rgb(74, 130, 226);
   }

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(218, 72%, 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 #4a82e2

RGB Code Hex Code Preview
rgb(74, 130, 226, 10%) #4a82e21a  
rgb(74, 130, 226, 20%) #4a82e233  
rgb(74, 130, 226, 40%) #4a82e24C  
rgb(74, 130, 226, 60%) #4a82e299  
rgb(74, 130, 226, 80%) #4a82e2CC  
rgb(74, 130, 226, 100%) #4a82e2FF  

Saturated and desaturated colors of #4a82e2

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

#4a82e2 Color Usage In CSS

 body {
    color: #4a82e2;
    }
 p {
    color: rgb(74, 130, 226);
    }
 header {
    border-bottom:1px solid #4a82e2;
    }
Recent Random Colors