Random Color Generator

#2a527e Color

Color Codes
Hex Code #2a527e
RGB Code rgb(42, 82, 126)
HSL Code hsl(211, 50%, 33%)

#2a527e Color Syntax

rgb()

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

 main {
    background-color: rgb(42, 82, 126);
   }

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(211, 50%, 33%);
  }

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 #2a527e

RGB Code Hex Code Preview
rgb(42, 82, 126, 10%) #2a527e1a  
rgb(42, 82, 126, 20%) #2a527e33  
rgb(42, 82, 126, 40%) #2a527e4C  
rgb(42, 82, 126, 60%) #2a527e99  
rgb(42, 82, 126, 80%) #2a527eCC  
rgb(42, 82, 126, 100%) #2a527eFF  

Saturated and desaturated colors of #2a527e

HSL Code Preview
hsl(211, 10%, 33%)  
hsl(211, 20%, 33%)  
hsl(211, 40%, 33%)  
hsl(211, 60%, 33%)  
hsl(211, 80%, 33%)  
hsl(211, 100%, 33%)  

#2a527e Color Usage In CSS

 body {
    color: #2a527e;
    }
 p {
    color: rgb(42, 82, 126);
    }
 header {
    border-bottom:1px solid #2a527e;
    }
Recent Random Colors