Random Color Generator

#5e1517 Color

Color Codes
Hex Code #5e1517
RGB Code rgb(94, 21, 23)
HSL Code hsl(358, 63%, 23%)

#5e1517 Color Syntax

rgb()

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

 main {
    background-color: rgb(94, 21, 23);
   }

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(358, 63%, 23%);
  }

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

RGB Code Hex Code Preview
rgb(94, 21, 23, 10%) #5e15171a  
rgb(94, 21, 23, 20%) #5e151733  
rgb(94, 21, 23, 40%) #5e15174C  
rgb(94, 21, 23, 60%) #5e151799  
rgb(94, 21, 23, 80%) #5e1517CC  
rgb(94, 21, 23, 100%) #5e1517FF  

Saturated and desaturated colors of #5e1517

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

#5e1517 Color Usage In CSS

 body {
    color: #5e1517;
    }
 p {
    color: rgb(94, 21, 23);
    }
 header {
    border-bottom:1px solid #5e1517;
    }
Recent Random Colors