Random Color Generator

#321e08 Color

Color Codes
Hex Code #321e08
RGB Code rgb(50, 30, 08)
HSL Code hsl(31, 72%, 11%)

#321e08 Color Syntax

rgb()

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

 main {
    background-color: rgb(50, 30, 08);
   }

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(31, 72%, 11%);
  }

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 #321e08

RGB Code Hex Code Preview
rgb(50, 30, 08, 10%) #321e081a  
rgb(50, 30, 08, 20%) #321e0833  
rgb(50, 30, 08, 40%) #321e084C  
rgb(50, 30, 08, 60%) #321e0899  
rgb(50, 30, 08, 80%) #321e08CC  
rgb(50, 30, 08, 100%) #321e08FF  

Saturated and desaturated colors of #321e08

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

#321e08 Color Usage In CSS

 body {
    color: #321e08;
    }
 p {
    color: rgb(50, 30, 08);
    }
 header {
    border-bottom:1px solid #321e08;
    }
Recent Random Colors