Random Color Generator

#470b2c Color

Color Codes
Hex Code #470b2c
RGB Code rgb(71, 11, 44)
HSL Code hsl(327, 73%, 16%)

#470b2c Color Syntax

rgb()

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

 main {
    background-color: rgb(71, 11, 44);
   }

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(327, 73%, 16%);
  }

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 #470b2c

RGB Code Hex Code Preview
rgb(71, 11, 44, 10%) #470b2c1a  
rgb(71, 11, 44, 20%) #470b2c33  
rgb(71, 11, 44, 40%) #470b2c4C  
rgb(71, 11, 44, 60%) #470b2c99  
rgb(71, 11, 44, 80%) #470b2cCC  
rgb(71, 11, 44, 100%) #470b2cFF  

Saturated and desaturated colors of #470b2c

HSL Code Preview
hsl(327, 10%, 16%)  
hsl(327, 20%, 16%)  
hsl(327, 40%, 16%)  
hsl(327, 60%, 16%)  
hsl(327, 80%, 16%)  
hsl(327, 100%, 16%)  

#470b2c Color Usage In CSS

 body {
    color: #470b2c;
    }
 p {
    color: rgb(71, 11, 44);
    }
 header {
    border-bottom:1px solid #470b2c;
    }
Recent Random Colors