Random Color Generator

#b5c503 Color

Color Codes
Hex Code #b5c503
RGB Code rgb(181, 197, 03)
HSL Code hsl(65, 97%, 39%)

#b5c503 Color Syntax

rgb()

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

 main {
    background-color: rgb(181, 197, 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(65, 97%, 39%);
  }

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

RGB Code Hex Code Preview
rgb(181, 197, 03, 10%) #b5c5031a  
rgb(181, 197, 03, 20%) #b5c50333  
rgb(181, 197, 03, 40%) #b5c5034C  
rgb(181, 197, 03, 60%) #b5c50399  
rgb(181, 197, 03, 80%) #b5c503CC  
rgb(181, 197, 03, 100%) #b5c503FF  

Saturated and desaturated colors of #b5c503

HSL Code Preview
hsl(65, 10%, 39%)  
hsl(65, 20%, 39%)  
hsl(65, 40%, 39%)  
hsl(65, 60%, 39%)  
hsl(65, 80%, 39%)  
hsl(65, 100%, 39%)  

#b5c503 Color Usage In CSS

 body {
    color: #b5c503;
    }
 p {
    color: rgb(181, 197, 03);
    }
 header {
    border-bottom:1px solid #b5c503;
    }
Recent Random Colors