Random Color Generator

#527d5c Color

Color Codes
Hex Code #527d5c
RGB Code rgb(82, 125, 92)
HSL Code hsl(134, 21%, 41%)

#527d5c Color Syntax

rgb()

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

 main {
    background-color: rgb(82, 125, 92);
   }

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(134, 21%, 41%);
  }

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 #527d5c

RGB Code Hex Code Preview
rgb(82, 125, 92, 10%) #527d5c1a  
rgb(82, 125, 92, 20%) #527d5c33  
rgb(82, 125, 92, 40%) #527d5c4C  
rgb(82, 125, 92, 60%) #527d5c99  
rgb(82, 125, 92, 80%) #527d5cCC  
rgb(82, 125, 92, 100%) #527d5cFF  

Saturated and desaturated colors of #527d5c

HSL Code Preview
hsl(134, 10%, 41%)  
hsl(134, 20%, 41%)  
hsl(134, 40%, 41%)  
hsl(134, 60%, 41%)  
hsl(134, 80%, 41%)  
hsl(134, 100%, 41%)  

#527d5c Color Usage In CSS

 body {
    color: #527d5c;
    }
 p {
    color: rgb(82, 125, 92);
    }
 header {
    border-bottom:1px solid #527d5c;
    }
Recent Random Colors