Random Color Generator

#328d8b Color

Color Codes
Hex Code #328d8b
RGB Code rgb(50, 141, 139)
HSL Code hsl(179, 48%, 37%)

#328d8b Color Syntax

rgb()

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

 main {
    background-color: rgb(50, 141, 139);
   }

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(179, 48%, 37%);
  }

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 #328d8b

RGB Code Hex Code Preview
rgb(50, 141, 139, 10%) #328d8b1a  
rgb(50, 141, 139, 20%) #328d8b33  
rgb(50, 141, 139, 40%) #328d8b4C  
rgb(50, 141, 139, 60%) #328d8b99  
rgb(50, 141, 139, 80%) #328d8bCC  
rgb(50, 141, 139, 100%) #328d8bFF  

Saturated and desaturated colors of #328d8b

HSL Code Preview
hsl(179, 10%, 37%)  
hsl(179, 20%, 37%)  
hsl(179, 40%, 37%)  
hsl(179, 60%, 37%)  
hsl(179, 80%, 37%)  
hsl(179, 100%, 37%)  

#328d8b Color Usage In CSS

 body {
    color: #328d8b;
    }
 p {
    color: rgb(50, 141, 139);
    }
 header {
    border-bottom:1px solid #328d8b;
    }
Recent Random Colors