Random Color Generator

#1d379b Color

Color Codes
Hex Code #1d379b
RGB Code rgb(29, 55, 155)
HSL Code hsl(228, 68%, 36%)

#1d379b Color Syntax

rgb()

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

 main {
    background-color: rgb(29, 55, 155);
   }

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(228, 68%, 36%);
  }

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

RGB Code Hex Code Preview
rgb(29, 55, 155, 10%) #1d379b1a  
rgb(29, 55, 155, 20%) #1d379b33  
rgb(29, 55, 155, 40%) #1d379b4C  
rgb(29, 55, 155, 60%) #1d379b99  
rgb(29, 55, 155, 80%) #1d379bCC  
rgb(29, 55, 155, 100%) #1d379bFF  

Saturated and desaturated colors of #1d379b

HSL Code Preview
hsl(228, 10%, 36%)  
hsl(228, 20%, 36%)  
hsl(228, 40%, 36%)  
hsl(228, 60%, 36%)  
hsl(228, 80%, 36%)  
hsl(228, 100%, 36%)  

#1d379b Color Usage In CSS

 body {
    color: #1d379b;
    }
 p {
    color: rgb(29, 55, 155);
    }
 header {
    border-bottom:1px solid #1d379b;
    }
Recent Random Colors