Random Color Generator

#5e2602 Color

Color Codes
Hex Code #5e2602
RGB Code rgb(94, 38, 02)
HSL Code hsl(23, 96%, 19%)

#5e2602 Color Syntax

rgb()

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

 main {
    background-color: rgb(94, 38, 02);
   }

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(23, 96%, 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 #5e2602

RGB Code Hex Code Preview
rgb(94, 38, 02, 10%) #5e26021a  
rgb(94, 38, 02, 20%) #5e260233  
rgb(94, 38, 02, 40%) #5e26024C  
rgb(94, 38, 02, 60%) #5e260299  
rgb(94, 38, 02, 80%) #5e2602CC  
rgb(94, 38, 02, 100%) #5e2602FF  

Saturated and desaturated colors of #5e2602

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

#5e2602 Color Usage In CSS

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