Random Color Generator

#954303 Color

Color Codes
Hex Code #954303
RGB Code rgb(149, 67, 03)
HSL Code hsl(26, 96%, 30%)

#954303 Color Syntax

rgb()

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

 main {
    background-color: rgb(149, 67, 03);
   }

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(26, 96%, 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 #954303

RGB Code Hex Code Preview
rgb(149, 67, 03, 10%) #9543031a  
rgb(149, 67, 03, 20%) #95430333  
rgb(149, 67, 03, 40%) #9543034C  
rgb(149, 67, 03, 60%) #95430399  
rgb(149, 67, 03, 80%) #954303CC  
rgb(149, 67, 03, 100%) #954303FF  

Saturated and desaturated colors of #954303

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

#954303 Color Usage In CSS

 body {
    color: #954303;
    }
 p {
    color: rgb(149, 67, 03);
    }
 header {
    border-bottom:1px solid #954303;
    }
Recent Random Colors