Random Color Generator

#475e59 Color

Color Codes
Hex Code #475e59
RGB Code rgb(71, 94, 89)
HSL Code hsl(167, 14%, 32%)

#475e59 Color Syntax

rgb()

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

 main {
    background-color: rgb(71, 94, 89);
   }

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(167, 14%, 32%);
  }

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 #475e59

RGB Code Hex Code Preview
rgb(71, 94, 89, 10%) #475e591a  
rgb(71, 94, 89, 20%) #475e5933  
rgb(71, 94, 89, 40%) #475e594C  
rgb(71, 94, 89, 60%) #475e5999  
rgb(71, 94, 89, 80%) #475e59CC  
rgb(71, 94, 89, 100%) #475e59FF  

Saturated and desaturated colors of #475e59

HSL Code Preview
hsl(167, 10%, 32%)  
hsl(167, 20%, 32%)  
hsl(167, 40%, 32%)  
hsl(167, 60%, 32%)  
hsl(167, 80%, 32%)  
hsl(167, 100%, 32%)  

#475e59 Color Usage In CSS

 body {
    color: #475e59;
    }
 p {
    color: rgb(71, 94, 89);
    }
 header {
    border-bottom:1px solid #475e59;
    }
Recent Random Colors