Random Color Generator

#4b0515 Color

Color Codes
Hex Code #4b0515
RGB Code rgb(75, 05, 21)
HSL Code hsl(346, 88%, 16%)

#4b0515 Color Syntax

rgb()

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

 main {
    background-color: rgb(75, 05, 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(346, 88%, 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 #4b0515

RGB Code Hex Code Preview
rgb(75, 05, 21, 10%) #4b05151a  
rgb(75, 05, 21, 20%) #4b051533  
rgb(75, 05, 21, 40%) #4b05154C  
rgb(75, 05, 21, 60%) #4b051599  
rgb(75, 05, 21, 80%) #4b0515CC  
rgb(75, 05, 21, 100%) #4b0515FF  

Saturated and desaturated colors of #4b0515

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

#4b0515 Color Usage In CSS

 body {
    color: #4b0515;
    }
 p {
    color: rgb(75, 05, 21);
    }
 header {
    border-bottom:1px solid #4b0515;
    }
Recent Random Colors