Random Color Generator

#955251 Color

Color Codes
Hex Code #955251
RGB Code rgb(149, 82, 81)
HSL Code hsl(1, 30%, 45%)

#955251 Color Syntax

rgb()

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

 main {
    background-color: rgb(149, 82, 81);
   }

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(1, 30%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(149, 82, 81, 10%) #9552511a  
rgb(149, 82, 81, 20%) #95525133  
rgb(149, 82, 81, 40%) #9552514C  
rgb(149, 82, 81, 60%) #95525199  
rgb(149, 82, 81, 80%) #955251CC  
rgb(149, 82, 81, 100%) #955251FF  

Saturated and desaturated colors of #955251

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

#955251 Color Usage In CSS

 body {
    color: #955251;
    }
 p {
    color: rgb(149, 82, 81);
    }
 header {
    border-bottom:1px solid #955251;
    }
Recent Random Colors