Random Color Generator

#b6c965 Color

Color Codes
Hex Code #b6c965
RGB Code rgb(182, 201, 101)
HSL Code hsl(71, 48%, 59%)

#b6c965 Color Syntax

rgb()

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

 main {
    background-color: rgb(182, 201, 101);
   }

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(71, 48%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(182, 201, 101, 10%) #b6c9651a  
rgb(182, 201, 101, 20%) #b6c96533  
rgb(182, 201, 101, 40%) #b6c9654C  
rgb(182, 201, 101, 60%) #b6c96599  
rgb(182, 201, 101, 80%) #b6c965CC  
rgb(182, 201, 101, 100%) #b6c965FF  

Saturated and desaturated colors of #b6c965

HSL Code Preview
hsl(71, 10%, 59%)  
hsl(71, 20%, 59%)  
hsl(71, 40%, 59%)  
hsl(71, 60%, 59%)  
hsl(71, 80%, 59%)  
hsl(71, 100%, 59%)  

#b6c965 Color Usage In CSS

 body {
    color: #b6c965;
    }
 p {
    color: rgb(182, 201, 101);
    }
 header {
    border-bottom:1px solid #b6c965;
    }
Recent Random Colors