Random Color Generator

#b5c602 Color

Color Codes
Hex Code #b5c602
RGB Code rgb(181, 198, 02)
HSL Code hsl(65, 98%, 39%)

#b5c602 Color Syntax

rgb()

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

 main {
    background-color: rgb(181, 198, 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(65, 98%, 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 #b5c602

RGB Code Hex Code Preview
rgb(181, 198, 02, 10%) #b5c6021a  
rgb(181, 198, 02, 20%) #b5c60233  
rgb(181, 198, 02, 40%) #b5c6024C  
rgb(181, 198, 02, 60%) #b5c60299  
rgb(181, 198, 02, 80%) #b5c602CC  
rgb(181, 198, 02, 100%) #b5c602FF  

Saturated and desaturated colors of #b5c602

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%)  

#b5c602 Color Usage In CSS

 body {
    color: #b5c602;
    }
 p {
    color: rgb(181, 198, 02);
    }
 header {
    border-bottom:1px solid #b5c602;
    }
Recent Random Colors