Random Color Generator

#30bdae Color

Color Codes
Hex Code #30bdae
RGB Code rgb(48, 189, 174)
HSL Code hsl(174, 59%, 46%)

#30bdae Color Syntax

rgb()

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

 main {
    background-color: rgb(48, 189, 174);
   }

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(174, 59%, 46%);
  }

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 #30bdae

RGB Code Hex Code Preview
rgb(48, 189, 174, 10%) #30bdae1a  
rgb(48, 189, 174, 20%) #30bdae33  
rgb(48, 189, 174, 40%) #30bdae4C  
rgb(48, 189, 174, 60%) #30bdae99  
rgb(48, 189, 174, 80%) #30bdaeCC  
rgb(48, 189, 174, 100%) #30bdaeFF  

Saturated and desaturated colors of #30bdae

HSL Code Preview
hsl(174, 10%, 46%)  
hsl(174, 20%, 46%)  
hsl(174, 40%, 46%)  
hsl(174, 60%, 46%)  
hsl(174, 80%, 46%)  
hsl(174, 100%, 46%)  

#30bdae Color Usage In CSS

 body {
    color: #30bdae;
    }
 p {
    color: rgb(48, 189, 174);
    }
 header {
    border-bottom:1px solid #30bdae;
    }
Recent Random Colors