Random Color Generator

#108083 Color

Color Codes
Hex Code #108083
RGB Code rgb(16, 128, 131)
HSL Code hsl(182, 78%, 29%)

#108083 Color Syntax

rgb()

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

 main {
    background-color: rgb(16, 128, 131);
   }

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(182, 78%, 29%);
  }

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 #108083

RGB Code Hex Code Preview
rgb(16, 128, 131, 10%) #1080831a  
rgb(16, 128, 131, 20%) #10808333  
rgb(16, 128, 131, 40%) #1080834C  
rgb(16, 128, 131, 60%) #10808399  
rgb(16, 128, 131, 80%) #108083CC  
rgb(16, 128, 131, 100%) #108083FF  

Saturated and desaturated colors of #108083

HSL Code Preview
hsl(182, 10%, 29%)  
hsl(182, 20%, 29%)  
hsl(182, 40%, 29%)  
hsl(182, 60%, 29%)  
hsl(182, 80%, 29%)  
hsl(182, 100%, 29%)  

#108083 Color Usage In CSS

 body {
    color: #108083;
    }
 p {
    color: rgb(16, 128, 131);
    }
 header {
    border-bottom:1px solid #108083;
    }
Recent Random Colors