Random Color Generator

#86240b Color

Color Codes
Hex Code #86240b
RGB Code rgb(134, 36, 11)
HSL Code hsl(12, 85%, 28%)

#86240b Color Syntax

rgb()

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

 main {
    background-color: rgb(134, 36, 11);
   }

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(12, 85%, 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 #86240b

RGB Code Hex Code Preview
rgb(134, 36, 11, 10%) #86240b1a  
rgb(134, 36, 11, 20%) #86240b33  
rgb(134, 36, 11, 40%) #86240b4C  
rgb(134, 36, 11, 60%) #86240b99  
rgb(134, 36, 11, 80%) #86240bCC  
rgb(134, 36, 11, 100%) #86240bFF  

Saturated and desaturated colors of #86240b

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

#86240b Color Usage In CSS

 body {
    color: #86240b;
    }
 p {
    color: rgb(134, 36, 11);
    }
 header {
    border-bottom:1px solid #86240b;
    }
Recent Random Colors