Random Color Generator

#823214 Color

Color Codes
Hex Code #823214
RGB Code rgb(130, 50, 20)
HSL Code hsl(16, 73%, 29%)

#823214 Color Syntax

rgb()

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

 main {
    background-color: rgb(130, 50, 20);
   }

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(16, 73%, 29%);
  }

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

RGB Code Hex Code Preview
rgb(130, 50, 20, 10%) #8232141a  
rgb(130, 50, 20, 20%) #82321433  
rgb(130, 50, 20, 40%) #8232144C  
rgb(130, 50, 20, 60%) #82321499  
rgb(130, 50, 20, 80%) #823214CC  
rgb(130, 50, 20, 100%) #823214FF  

Saturated and desaturated colors of #823214

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

#823214 Color Usage In CSS

 body {
    color: #823214;
    }
 p {
    color: rgb(130, 50, 20);
    }
 header {
    border-bottom:1px solid #823214;
    }
Recent Random Colors