Random Color Generator

#1b5c6c Color

Color Codes
Hex Code #1b5c6c
RGB Code rgb(27, 92, 108)
HSL Code hsl(192, 60%, 26%)

#1b5c6c Color Syntax

rgb()

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

 main {
    background-color: rgb(27, 92, 108);
   }

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(192, 60%, 26%);
  }

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

RGB Code Hex Code Preview
rgb(27, 92, 108, 10%) #1b5c6c1a  
rgb(27, 92, 108, 20%) #1b5c6c33  
rgb(27, 92, 108, 40%) #1b5c6c4C  
rgb(27, 92, 108, 60%) #1b5c6c99  
rgb(27, 92, 108, 80%) #1b5c6cCC  
rgb(27, 92, 108, 100%) #1b5c6cFF  

Saturated and desaturated colors of #1b5c6c

HSL Code Preview
hsl(192, 10%, 26%)  
hsl(192, 20%, 26%)  
hsl(192, 40%, 26%)  
hsl(192, 60%, 26%)  
hsl(192, 80%, 26%)  
hsl(192, 100%, 26%)  

#1b5c6c Color Usage In CSS

 body {
    color: #1b5c6c;
    }
 p {
    color: rgb(27, 92, 108);
    }
 header {
    border-bottom:1px solid #1b5c6c;
    }
Recent Random Colors