Random Color Generator

#483a1e Color

Color Codes
Hex Code #483a1e
RGB Code rgb(72, 58, 30)
HSL Code hsl(40, 41%, 20%)

#483a1e Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 58, 30);
   }

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(40, 41%, 20%);
  }

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 #483a1e

RGB Code Hex Code Preview
rgb(72, 58, 30, 10%) #483a1e1a  
rgb(72, 58, 30, 20%) #483a1e33  
rgb(72, 58, 30, 40%) #483a1e4C  
rgb(72, 58, 30, 60%) #483a1e99  
rgb(72, 58, 30, 80%) #483a1eCC  
rgb(72, 58, 30, 100%) #483a1eFF  

Saturated and desaturated colors of #483a1e

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

#483a1e Color Usage In CSS

 body {
    color: #483a1e;
    }
 p {
    color: rgb(72, 58, 30);
    }
 header {
    border-bottom:1px solid #483a1e;
    }
Recent Random Colors