Random Color Generator

#b25301 Color

Color Codes
Hex Code #b25301
RGB Code rgb(178, 83, 01)
HSL Code hsl(28, 99%, 35%)

#b25301 Color Syntax

rgb()

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

 main {
    background-color: rgb(178, 83, 01);
   }

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(28, 99%, 35%);
  }

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

RGB Code Hex Code Preview
rgb(178, 83, 01, 10%) #b253011a  
rgb(178, 83, 01, 20%) #b2530133  
rgb(178, 83, 01, 40%) #b253014C  
rgb(178, 83, 01, 60%) #b2530199  
rgb(178, 83, 01, 80%) #b25301CC  
rgb(178, 83, 01, 100%) #b25301FF  

Saturated and desaturated colors of #b25301

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

#b25301 Color Usage In CSS

 body {
    color: #b25301;
    }
 p {
    color: rgb(178, 83, 01);
    }
 header {
    border-bottom:1px solid #b25301;
    }
Recent Random Colors