Random Color Generator

#533020 Color

Color Codes
Hex Code #533020
RGB Code rgb(83, 48, 32)
HSL Code hsl(19, 44%, 23%)

#533020 Color Syntax

rgb()

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

 main {
    background-color: rgb(83, 48, 32);
   }

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(19, 44%, 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 #533020

RGB Code Hex Code Preview
rgb(83, 48, 32, 10%) #5330201a  
rgb(83, 48, 32, 20%) #53302033  
rgb(83, 48, 32, 40%) #5330204C  
rgb(83, 48, 32, 60%) #53302099  
rgb(83, 48, 32, 80%) #533020CC  
rgb(83, 48, 32, 100%) #533020FF  

Saturated and desaturated colors of #533020

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

#533020 Color Usage In CSS

 body {
    color: #533020;
    }
 p {
    color: rgb(83, 48, 32);
    }
 header {
    border-bottom:1px solid #533020;
    }
Recent Random Colors