Random Color Generator

#6b2c25 Color

Color Codes
Hex Code #6b2c25
RGB Code rgb(107, 44, 37)
HSL Code hsl(6, 49%, 28%)

#6b2c25 Color Syntax

rgb()

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

 main {
    background-color: rgb(107, 44, 37);
   }

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(6, 49%, 28%);
  }

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 #6b2c25

RGB Code Hex Code Preview
rgb(107, 44, 37, 10%) #6b2c251a  
rgb(107, 44, 37, 20%) #6b2c2533  
rgb(107, 44, 37, 40%) #6b2c254C  
rgb(107, 44, 37, 60%) #6b2c2599  
rgb(107, 44, 37, 80%) #6b2c25CC  
rgb(107, 44, 37, 100%) #6b2c25FF  

Saturated and desaturated colors of #6b2c25

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

#6b2c25 Color Usage In CSS

 body {
    color: #6b2c25;
    }
 p {
    color: rgb(107, 44, 37);
    }
 header {
    border-bottom:1px solid #6b2c25;
    }
Recent Random Colors