Random Color Generator

#865c52 Color

Color Codes
Hex Code #865c52
RGB Code rgb(134, 92, 82)
HSL Code hsl(12, 24%, 42%)

#865c52 Color Syntax

rgb()

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

 main {
    background-color: rgb(134, 92, 82);
   }

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(12, 24%, 42%);
  }

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 #865c52

RGB Code Hex Code Preview
rgb(134, 92, 82, 10%) #865c521a  
rgb(134, 92, 82, 20%) #865c5233  
rgb(134, 92, 82, 40%) #865c524C  
rgb(134, 92, 82, 60%) #865c5299  
rgb(134, 92, 82, 80%) #865c52CC  
rgb(134, 92, 82, 100%) #865c52FF  

Saturated and desaturated colors of #865c52

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

#865c52 Color Usage In CSS

 body {
    color: #865c52;
    }
 p {
    color: rgb(134, 92, 82);
    }
 header {
    border-bottom:1px solid #865c52;
    }
Recent Random Colors