Random Color Generator

#332d01 Color

Color Codes
Hex Code #332d01
RGB Code rgb(51, 45, 01)
HSL Code hsl(53, 96%, 10%)

#332d01 Color Syntax

rgb()

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

 main {
    background-color: rgb(51, 45, 01);
   }

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(53, 96%, 10%);
  }

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 #332d01

RGB Code Hex Code Preview
rgb(51, 45, 01, 10%) #332d011a  
rgb(51, 45, 01, 20%) #332d0133  
rgb(51, 45, 01, 40%) #332d014C  
rgb(51, 45, 01, 60%) #332d0199  
rgb(51, 45, 01, 80%) #332d01CC  
rgb(51, 45, 01, 100%) #332d01FF  

Saturated and desaturated colors of #332d01

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

#332d01 Color Usage In CSS

 body {
    color: #332d01;
    }
 p {
    color: rgb(51, 45, 01);
    }
 header {
    border-bottom:1px solid #332d01;
    }
Recent Random Colors