Random Color Generator

#343313 Color

Color Codes
Hex Code #343313
RGB Code rgb(52, 51, 19)
HSL Code hsl(58, 46%, 14%)

#343313 Color Syntax

rgb()

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

 main {
    background-color: rgb(52, 51, 19);
   }

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(58, 46%, 14%);
  }

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

RGB Code Hex Code Preview
rgb(52, 51, 19, 10%) #3433131a  
rgb(52, 51, 19, 20%) #34331333  
rgb(52, 51, 19, 40%) #3433134C  
rgb(52, 51, 19, 60%) #34331399  
rgb(52, 51, 19, 80%) #343313CC  
rgb(52, 51, 19, 100%) #343313FF  

Saturated and desaturated colors of #343313

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

#343313 Color Usage In CSS

 body {
    color: #343313;
    }
 p {
    color: rgb(52, 51, 19);
    }
 header {
    border-bottom:1px solid #343313;
    }
Recent Random Colors