Random Color Generator

#b5a401 Color

Color Codes
Hex Code #b5a401
RGB Code rgb(181, 164, 01)
HSL Code hsl(54, 99%, 36%)

#b5a401 Color Syntax

rgb()

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

 main {
    background-color: rgb(181, 164, 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(54, 99%, 36%);
  }

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

RGB Code Hex Code Preview
rgb(181, 164, 01, 10%) #b5a4011a  
rgb(181, 164, 01, 20%) #b5a40133  
rgb(181, 164, 01, 40%) #b5a4014C  
rgb(181, 164, 01, 60%) #b5a40199  
rgb(181, 164, 01, 80%) #b5a401CC  
rgb(181, 164, 01, 100%) #b5a401FF  

Saturated and desaturated colors of #b5a401

HSL Code Preview
hsl(54, 10%, 36%)  
hsl(54, 20%, 36%)  
hsl(54, 40%, 36%)  
hsl(54, 60%, 36%)  
hsl(54, 80%, 36%)  
hsl(54, 100%, 36%)  

#b5a401 Color Usage In CSS

 body {
    color: #b5a401;
    }
 p {
    color: rgb(181, 164, 01);
    }
 header {
    border-bottom:1px solid #b5a401;
    }
Recent Random Colors