Random Color Generator

#5da38d Color

Color Codes
Hex Code #5da38d
RGB Code rgb(93, 163, 141)
HSL Code hsl(161, 28%, 50%)

#5da38d Color Syntax

rgb()

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

 main {
    background-color: rgb(93, 163, 141);
   }

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(161, 28%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(93, 163, 141, 10%) #5da38d1a  
rgb(93, 163, 141, 20%) #5da38d33  
rgb(93, 163, 141, 40%) #5da38d4C  
rgb(93, 163, 141, 60%) #5da38d99  
rgb(93, 163, 141, 80%) #5da38dCC  
rgb(93, 163, 141, 100%) #5da38dFF  

Saturated and desaturated colors of #5da38d

HSL Code Preview
hsl(161, 10%, 50%)  
hsl(161, 20%, 50%)  
hsl(161, 40%, 50%)  
hsl(161, 60%, 50%)  
hsl(161, 80%, 50%)  
hsl(161, 100%, 50%)  

#5da38d Color Usage In CSS

 body {
    color: #5da38d;
    }
 p {
    color: rgb(93, 163, 141);
    }
 header {
    border-bottom:1px solid #5da38d;
    }
Recent Random Colors