Random Color Generator

#1b1105 Color

Color Codes
Hex Code #1b1105
RGB Code rgb(27, 17, 05)
HSL Code hsl(33, 69%, 6%)

#1b1105 Color Syntax

rgb()

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

 main {
    background-color: rgb(27, 17, 05);
   }

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(33, 69%, 6%);
  }

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 #1b1105

RGB Code Hex Code Preview
rgb(27, 17, 05, 10%) #1b11051a  
rgb(27, 17, 05, 20%) #1b110533  
rgb(27, 17, 05, 40%) #1b11054C  
rgb(27, 17, 05, 60%) #1b110599  
rgb(27, 17, 05, 80%) #1b1105CC  
rgb(27, 17, 05, 100%) #1b1105FF  

Saturated and desaturated colors of #1b1105

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

#1b1105 Color Usage In CSS

 body {
    color: #1b1105;
    }
 p {
    color: rgb(27, 17, 05);
    }
 header {
    border-bottom:1px solid #1b1105;
    }
Recent Random Colors