Random Color Generator

#477f6c Color

Color Codes
Hex Code #477f6c
RGB Code rgb(71, 127, 108)
HSL Code hsl(160, 28%, 39%)

#477f6c Color Syntax

rgb()

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

 main {
    background-color: rgb(71, 127, 108);
   }

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(160, 28%, 39%);
  }

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 #477f6c

RGB Code Hex Code Preview
rgb(71, 127, 108, 10%) #477f6c1a  
rgb(71, 127, 108, 20%) #477f6c33  
rgb(71, 127, 108, 40%) #477f6c4C  
rgb(71, 127, 108, 60%) #477f6c99  
rgb(71, 127, 108, 80%) #477f6cCC  
rgb(71, 127, 108, 100%) #477f6cFF  

Saturated and desaturated colors of #477f6c

HSL Code Preview
hsl(160, 10%, 39%)  
hsl(160, 20%, 39%)  
hsl(160, 40%, 39%)  
hsl(160, 60%, 39%)  
hsl(160, 80%, 39%)  
hsl(160, 100%, 39%)  

#477f6c Color Usage In CSS

 body {
    color: #477f6c;
    }
 p {
    color: rgb(71, 127, 108);
    }
 header {
    border-bottom:1px solid #477f6c;
    }
Recent Random Colors