Random Color Generator

#350511 Color

Color Codes
Hex Code #350511
RGB Code rgb(53, 05, 17)
HSL Code hsl(345, 83%, 11%)

#350511 Color Syntax

rgb()

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

 main {
    background-color: rgb(53, 05, 17);
   }

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(345, 83%, 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 #350511

RGB Code Hex Code Preview
rgb(53, 05, 17, 10%) #3505111a  
rgb(53, 05, 17, 20%) #35051133  
rgb(53, 05, 17, 40%) #3505114C  
rgb(53, 05, 17, 60%) #35051199  
rgb(53, 05, 17, 80%) #350511CC  
rgb(53, 05, 17, 100%) #350511FF  

Saturated and desaturated colors of #350511

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

#350511 Color Usage In CSS

 body {
    color: #350511;
    }
 p {
    color: rgb(53, 05, 17);
    }
 header {
    border-bottom:1px solid #350511;
    }
Recent Random Colors