Random Color Generator

#0bb95f Color

Color Codes
Hex Code #0bb95f
RGB Code rgb(11, 185, 95)
HSL Code hsl(149, 89%, 38%)

#0bb95f Color Syntax

rgb()

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

 main {
    background-color: rgb(11, 185, 95);
   }

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(149, 89%, 38%);
  }

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 #0bb95f

RGB Code Hex Code Preview
rgb(11, 185, 95, 10%) #0bb95f1a  
rgb(11, 185, 95, 20%) #0bb95f33  
rgb(11, 185, 95, 40%) #0bb95f4C  
rgb(11, 185, 95, 60%) #0bb95f99  
rgb(11, 185, 95, 80%) #0bb95fCC  
rgb(11, 185, 95, 100%) #0bb95fFF  

Saturated and desaturated colors of #0bb95f

HSL Code Preview
hsl(149, 10%, 38%)  
hsl(149, 20%, 38%)  
hsl(149, 40%, 38%)  
hsl(149, 60%, 38%)  
hsl(149, 80%, 38%)  
hsl(149, 100%, 38%)  

#0bb95f Color Usage In CSS

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