Random Color Generator

#4bbead Color

Color Codes
Hex Code #4bbead
RGB Code rgb(75, 190, 173)
HSL Code hsl(171, 47%, 52%)

#4bbead Color Syntax

rgb()

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

 main {
    background-color: rgb(75, 190, 173);
   }

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(171, 47%, 52%);
  }

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 #4bbead

RGB Code Hex Code Preview
rgb(75, 190, 173, 10%) #4bbead1a  
rgb(75, 190, 173, 20%) #4bbead33  
rgb(75, 190, 173, 40%) #4bbead4C  
rgb(75, 190, 173, 60%) #4bbead99  
rgb(75, 190, 173, 80%) #4bbeadCC  
rgb(75, 190, 173, 100%) #4bbeadFF  

Saturated and desaturated colors of #4bbead

HSL Code Preview
hsl(171, 10%, 52%)  
hsl(171, 20%, 52%)  
hsl(171, 40%, 52%)  
hsl(171, 60%, 52%)  
hsl(171, 80%, 52%)  
hsl(171, 100%, 52%)  

#4bbead Color Usage In CSS

 body {
    color: #4bbead;
    }
 p {
    color: rgb(75, 190, 173);
    }
 header {
    border-bottom:1px solid #4bbead;
    }
Recent Random Colors