Random Color Generator

#b0dc68 Color

Color Codes
Hex Code #b0dc68
RGB Code rgb(176, 220, 104)
HSL Code hsl(83, 62%, 64%)

#b0dc68 Color Syntax

rgb()

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

 main {
    background-color: rgb(176, 220, 104);
   }

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(83, 62%, 64%);
  }

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

RGB Code Hex Code Preview
rgb(176, 220, 104, 10%) #b0dc681a  
rgb(176, 220, 104, 20%) #b0dc6833  
rgb(176, 220, 104, 40%) #b0dc684C  
rgb(176, 220, 104, 60%) #b0dc6899  
rgb(176, 220, 104, 80%) #b0dc68CC  
rgb(176, 220, 104, 100%) #b0dc68FF  

Saturated and desaturated colors of #b0dc68

HSL Code Preview
hsl(83, 10%, 64%)  
hsl(83, 20%, 64%)  
hsl(83, 40%, 64%)  
hsl(83, 60%, 64%)  
hsl(83, 80%, 64%)  
hsl(83, 100%, 64%)  

#b0dc68 Color Usage In CSS

 body {
    color: #b0dc68;
    }
 p {
    color: rgb(176, 220, 104);
    }
 header {
    border-bottom:1px solid #b0dc68;
    }
Recent Random Colors