Random Color Generator

#48662d Color

Color Codes
Hex Code #48662d
RGB Code rgb(72, 102, 45)
HSL Code hsl(92, 39%, 29%)

#48662d Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 102, 45);
   }

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(92, 39%, 29%);
  }

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 #48662d

RGB Code Hex Code Preview
rgb(72, 102, 45, 10%) #48662d1a  
rgb(72, 102, 45, 20%) #48662d33  
rgb(72, 102, 45, 40%) #48662d4C  
rgb(72, 102, 45, 60%) #48662d99  
rgb(72, 102, 45, 80%) #48662dCC  
rgb(72, 102, 45, 100%) #48662dFF  

Saturated and desaturated colors of #48662d

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

#48662d Color Usage In CSS

 body {
    color: #48662d;
    }
 p {
    color: rgb(72, 102, 45);
    }
 header {
    border-bottom:1px solid #48662d;
    }
Recent Random Colors