Random Color Generator

#5b9e83 Color

Color Codes
Hex Code #5b9e83
RGB Code rgb(91, 158, 131)
HSL Code hsl(156, 27%, 49%)

#5b9e83 Color Syntax

rgb()

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

 main {
    background-color: rgb(91, 158, 131);
   }

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(156, 27%, 49%);
  }

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 #5b9e83

RGB Code Hex Code Preview
rgb(91, 158, 131, 10%) #5b9e831a  
rgb(91, 158, 131, 20%) #5b9e8333  
rgb(91, 158, 131, 40%) #5b9e834C  
rgb(91, 158, 131, 60%) #5b9e8399  
rgb(91, 158, 131, 80%) #5b9e83CC  
rgb(91, 158, 131, 100%) #5b9e83FF  

Saturated and desaturated colors of #5b9e83

HSL Code Preview
hsl(156, 10%, 49%)  
hsl(156, 20%, 49%)  
hsl(156, 40%, 49%)  
hsl(156, 60%, 49%)  
hsl(156, 80%, 49%)  
hsl(156, 100%, 49%)  

#5b9e83 Color Usage In CSS

 body {
    color: #5b9e83;
    }
 p {
    color: rgb(91, 158, 131);
    }
 header {
    border-bottom:1px solid #5b9e83;
    }
Recent Random Colors