Random Color Generator

#0bad62 Color

Color Codes
Hex Code #0bad62
RGB Code rgb(11, 173, 98)
HSL Code hsl(152, 88%, 36%)

#0bad62 Color Syntax

rgb()

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

 main {
    background-color: rgb(11, 173, 98);
   }

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(152, 88%, 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 #0bad62

RGB Code Hex Code Preview
rgb(11, 173, 98, 10%) #0bad621a  
rgb(11, 173, 98, 20%) #0bad6233  
rgb(11, 173, 98, 40%) #0bad624C  
rgb(11, 173, 98, 60%) #0bad6299  
rgb(11, 173, 98, 80%) #0bad62CC  
rgb(11, 173, 98, 100%) #0bad62FF  

Saturated and desaturated colors of #0bad62

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

#0bad62 Color Usage In CSS

 body {
    color: #0bad62;
    }
 p {
    color: rgb(11, 173, 98);
    }
 header {
    border-bottom:1px solid #0bad62;
    }
Recent Random Colors