Random Color Generator

#376f72 Color

Color Codes
Hex Code #376f72
RGB Code rgb(55, 111, 114)
HSL Code hsl(183, 35%, 33%)

#376f72 Color Syntax

rgb()

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

 main {
    background-color: rgb(55, 111, 114);
   }

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(183, 35%, 33%);
  }

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 #376f72

RGB Code Hex Code Preview
rgb(55, 111, 114, 10%) #376f721a  
rgb(55, 111, 114, 20%) #376f7233  
rgb(55, 111, 114, 40%) #376f724C  
rgb(55, 111, 114, 60%) #376f7299  
rgb(55, 111, 114, 80%) #376f72CC  
rgb(55, 111, 114, 100%) #376f72FF  

Saturated and desaturated colors of #376f72

HSL Code Preview
hsl(183, 10%, 33%)  
hsl(183, 20%, 33%)  
hsl(183, 40%, 33%)  
hsl(183, 60%, 33%)  
hsl(183, 80%, 33%)  
hsl(183, 100%, 33%)  

#376f72 Color Usage In CSS

 body {
    color: #376f72;
    }
 p {
    color: rgb(55, 111, 114);
    }
 header {
    border-bottom:1px solid #376f72;
    }
Recent Random Colors