Random Color Generator

#47445f Color

Color Codes
Hex Code #47445f
RGB Code rgb(71, 68, 95)
HSL Code hsl(247, 17%, 32%)

#47445f Color Syntax

rgb()

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

 main {
    background-color: rgb(71, 68, 95);
   }

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(247, 17%, 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 #47445f

RGB Code Hex Code Preview
rgb(71, 68, 95, 10%) #47445f1a  
rgb(71, 68, 95, 20%) #47445f33  
rgb(71, 68, 95, 40%) #47445f4C  
rgb(71, 68, 95, 60%) #47445f99  
rgb(71, 68, 95, 80%) #47445fCC  
rgb(71, 68, 95, 100%) #47445fFF  

Saturated and desaturated colors of #47445f

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

#47445f Color Usage In CSS

 body {
    color: #47445f;
    }
 p {
    color: rgb(71, 68, 95);
    }
 header {
    border-bottom:1px solid #47445f;
    }
Recent Random Colors