Random Color Generator

#1d5d81 Color

Color Codes
Hex Code #1d5d81
RGB Code rgb(29, 93, 129)
HSL Code hsl(202, 63%, 31%)

#1d5d81 Color Syntax

rgb()

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

 main {
    background-color: rgb(29, 93, 129);
   }

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(202, 63%, 31%);
  }

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

RGB Code Hex Code Preview
rgb(29, 93, 129, 10%) #1d5d811a  
rgb(29, 93, 129, 20%) #1d5d8133  
rgb(29, 93, 129, 40%) #1d5d814C  
rgb(29, 93, 129, 60%) #1d5d8199  
rgb(29, 93, 129, 80%) #1d5d81CC  
rgb(29, 93, 129, 100%) #1d5d81FF  

Saturated and desaturated colors of #1d5d81

HSL Code Preview
hsl(202, 10%, 31%)  
hsl(202, 20%, 31%)  
hsl(202, 40%, 31%)  
hsl(202, 60%, 31%)  
hsl(202, 80%, 31%)  
hsl(202, 100%, 31%)  

#1d5d81 Color Usage In CSS

 body {
    color: #1d5d81;
    }
 p {
    color: rgb(29, 93, 129);
    }
 header {
    border-bottom:1px solid #1d5d81;
    }
Recent Random Colors