Random Color Generator

#10b378 Color

Color Codes
Hex Code #10b378
RGB Code rgb(16, 179, 120)
HSL Code hsl(158, 84%, 38%)

#10b378 Color Syntax

rgb()

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

 main {
    background-color: rgb(16, 179, 120);
   }

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(158, 84%, 38%);
  }

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 #10b378

RGB Code Hex Code Preview
rgb(16, 179, 120, 10%) #10b3781a  
rgb(16, 179, 120, 20%) #10b37833  
rgb(16, 179, 120, 40%) #10b3784C  
rgb(16, 179, 120, 60%) #10b37899  
rgb(16, 179, 120, 80%) #10b378CC  
rgb(16, 179, 120, 100%) #10b378FF  

Saturated and desaturated colors of #10b378

HSL Code Preview
hsl(158, 10%, 38%)  
hsl(158, 20%, 38%)  
hsl(158, 40%, 38%)  
hsl(158, 60%, 38%)  
hsl(158, 80%, 38%)  
hsl(158, 100%, 38%)  

#10b378 Color Usage In CSS

 body {
    color: #10b378;
    }
 p {
    color: rgb(16, 179, 120);
    }
 header {
    border-bottom:1px solid #10b378;
    }
Recent Random Colors