Random Color Generator

#1d6a71 Color

Color Codes
Hex Code #1d6a71
RGB Code rgb(29, 106, 113)
HSL Code hsl(185, 59%, 28%)

#1d6a71 Color Syntax

rgb()

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

 main {
    background-color: rgb(29, 106, 113);
   }

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(185, 59%, 28%);
  }

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 #1d6a71

RGB Code Hex Code Preview
rgb(29, 106, 113, 10%) #1d6a711a  
rgb(29, 106, 113, 20%) #1d6a7133  
rgb(29, 106, 113, 40%) #1d6a714C  
rgb(29, 106, 113, 60%) #1d6a7199  
rgb(29, 106, 113, 80%) #1d6a71CC  
rgb(29, 106, 113, 100%) #1d6a71FF  

Saturated and desaturated colors of #1d6a71

HSL Code Preview
hsl(185, 10%, 28%)  
hsl(185, 20%, 28%)  
hsl(185, 40%, 28%)  
hsl(185, 60%, 28%)  
hsl(185, 80%, 28%)  
hsl(185, 100%, 28%)  

#1d6a71 Color Usage In CSS

 body {
    color: #1d6a71;
    }
 p {
    color: rgb(29, 106, 113);
    }
 header {
    border-bottom:1px solid #1d6a71;
    }
Recent Random Colors