Random Color Generator

#880806 Color

Color Codes
Hex Code #880806
RGB Code rgb(136, 08, 06)
HSL Code hsl(1, 92%, 28%)

#880806 Color Syntax

rgb()

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

 main {
    background-color: rgb(136, 08, 06);
   }

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(1, 92%, 28%);
  }

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

RGB Code Hex Code Preview
rgb(136, 08, 06, 10%) #8808061a  
rgb(136, 08, 06, 20%) #88080633  
rgb(136, 08, 06, 40%) #8808064C  
rgb(136, 08, 06, 60%) #88080699  
rgb(136, 08, 06, 80%) #880806CC  
rgb(136, 08, 06, 100%) #880806FF  

Saturated and desaturated colors of #880806

HSL Code Preview
hsl(1, 10%, 28%)  
hsl(1, 20%, 28%)  
hsl(1, 40%, 28%)  
hsl(1, 60%, 28%)  
hsl(1, 80%, 28%)  
hsl(1, 100%, 28%)  

#880806 Color Usage In CSS

 body {
    color: #880806;
    }
 p {
    color: rgb(136, 08, 06);
    }
 header {
    border-bottom:1px solid #880806;
    }
Recent Random Colors