Random Color Generator

#483215 Color

Color Codes
Hex Code #483215
RGB Code rgb(72, 50, 21)
HSL Code hsl(34, 55%, 18%)

#483215 Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 50, 21);
   }

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(34, 55%, 18%);
  }

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 #483215

RGB Code Hex Code Preview
rgb(72, 50, 21, 10%) #4832151a  
rgb(72, 50, 21, 20%) #48321533  
rgb(72, 50, 21, 40%) #4832154C  
rgb(72, 50, 21, 60%) #48321599  
rgb(72, 50, 21, 80%) #483215CC  
rgb(72, 50, 21, 100%) #483215FF  

Saturated and desaturated colors of #483215

HSL Code Preview
hsl(34, 10%, 18%)  
hsl(34, 20%, 18%)  
hsl(34, 40%, 18%)  
hsl(34, 60%, 18%)  
hsl(34, 80%, 18%)  
hsl(34, 100%, 18%)  

#483215 Color Usage In CSS

 body {
    color: #483215;
    }
 p {
    color: rgb(72, 50, 21);
    }
 header {
    border-bottom:1px solid #483215;
    }
Recent Random Colors