Random Color Generator

#45b57e Color

Color Codes
Hex Code #45b57e
RGB Code rgb(69, 181, 126)
HSL Code hsl(151, 45%, 49%)

#45b57e Color Syntax

rgb()

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

 main {
    background-color: rgb(69, 181, 126);
   }

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(151, 45%, 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 #45b57e

RGB Code Hex Code Preview
rgb(69, 181, 126, 10%) #45b57e1a  
rgb(69, 181, 126, 20%) #45b57e33  
rgb(69, 181, 126, 40%) #45b57e4C  
rgb(69, 181, 126, 60%) #45b57e99  
rgb(69, 181, 126, 80%) #45b57eCC  
rgb(69, 181, 126, 100%) #45b57eFF  

Saturated and desaturated colors of #45b57e

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

#45b57e Color Usage In CSS

 body {
    color: #45b57e;
    }
 p {
    color: rgb(69, 181, 126);
    }
 header {
    border-bottom:1px solid #45b57e;
    }
Recent Random Colors