Random Color Generator

#5b0708 Color

Color Codes
Hex Code #5b0708
RGB Code rgb(91, 07, 08)
HSL Code hsl(359, 86%, 19%)

#5b0708 Color Syntax

rgb()

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

 main {
    background-color: rgb(91, 07, 08);
   }

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(359, 86%, 19%);
  }

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 #5b0708

RGB Code Hex Code Preview
rgb(91, 07, 08, 10%) #5b07081a  
rgb(91, 07, 08, 20%) #5b070833  
rgb(91, 07, 08, 40%) #5b07084C  
rgb(91, 07, 08, 60%) #5b070899  
rgb(91, 07, 08, 80%) #5b0708CC  
rgb(91, 07, 08, 100%) #5b0708FF  

Saturated and desaturated colors of #5b0708

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

#5b0708 Color Usage In CSS

 body {
    color: #5b0708;
    }
 p {
    color: rgb(91, 07, 08);
    }
 header {
    border-bottom:1px solid #5b0708;
    }
Recent Random Colors