Random Color Generator

#955202 Color

Color Codes
Hex Code #955202
RGB Code rgb(149, 82, 02)
HSL Code hsl(33, 97%, 30%)

#955202 Color Syntax

rgb()

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

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

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(33, 97%, 30%);
  }

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

RGB Code Hex Code Preview
rgb(149, 82, 02, 10%) #9552021a  
rgb(149, 82, 02, 20%) #95520233  
rgb(149, 82, 02, 40%) #9552024C  
rgb(149, 82, 02, 60%) #95520299  
rgb(149, 82, 02, 80%) #955202CC  
rgb(149, 82, 02, 100%) #955202FF  

Saturated and desaturated colors of #955202

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

#955202 Color Usage In CSS

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