Random Color Generator

#682112 Color

Color Codes
Hex Code #682112
RGB Code rgb(104, 33, 18)
HSL Code hsl(10, 70%, 24%)

#682112 Color Syntax

rgb()

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

 main {
    background-color: rgb(104, 33, 18);
   }

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(10, 70%, 24%);
  }

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

RGB Code Hex Code Preview
rgb(104, 33, 18, 10%) #6821121a  
rgb(104, 33, 18, 20%) #68211233  
rgb(104, 33, 18, 40%) #6821124C  
rgb(104, 33, 18, 60%) #68211299  
rgb(104, 33, 18, 80%) #682112CC  
rgb(104, 33, 18, 100%) #682112FF  

Saturated and desaturated colors of #682112

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

#682112 Color Usage In CSS

 body {
    color: #682112;
    }
 p {
    color: rgb(104, 33, 18);
    }
 header {
    border-bottom:1px solid #682112;
    }
Recent Random Colors