Random Color Generator

#8a1801 Color

Color Codes
Hex Code #8a1801
RGB Code rgb(138, 24, 01)
HSL Code hsl(10, 99%, 27%)

#8a1801 Color Syntax

rgb()

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

 main {
    background-color: rgb(138, 24, 01);
   }

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(10, 99%, 27%);
  }

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 #8a1801

RGB Code Hex Code Preview
rgb(138, 24, 01, 10%) #8a18011a  
rgb(138, 24, 01, 20%) #8a180133  
rgb(138, 24, 01, 40%) #8a18014C  
rgb(138, 24, 01, 60%) #8a180199  
rgb(138, 24, 01, 80%) #8a1801CC  
rgb(138, 24, 01, 100%) #8a1801FF  

Saturated and desaturated colors of #8a1801

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

#8a1801 Color Usage In CSS

 body {
    color: #8a1801;
    }
 p {
    color: rgb(138, 24, 01);
    }
 header {
    border-bottom:1px solid #8a1801;
    }
Recent Random Colors