Random Color Generator

#482225 Color

Color Codes
Hex Code #482225
RGB Code rgb(72, 34, 37)
HSL Code hsl(355, 36%, 21%)

#482225 Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 34, 37);
   }

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(355, 36%, 21%);
  }

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

RGB Code Hex Code Preview
rgb(72, 34, 37, 10%) #4822251a  
rgb(72, 34, 37, 20%) #48222533  
rgb(72, 34, 37, 40%) #4822254C  
rgb(72, 34, 37, 60%) #48222599  
rgb(72, 34, 37, 80%) #482225CC  
rgb(72, 34, 37, 100%) #482225FF  

Saturated and desaturated colors of #482225

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

#482225 Color Usage In CSS

 body {
    color: #482225;
    }
 p {
    color: rgb(72, 34, 37);
    }
 header {
    border-bottom:1px solid #482225;
    }
Recent Random Colors