Random Color Generator

#131c33 Color

Color Codes
Hex Code #131c33
RGB Code rgb(19, 28, 51)
HSL Code hsl(223, 46%, 14%)

#131c33 Color Syntax

rgb()

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

 main {
    background-color: rgb(19, 28, 51);
   }

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(223, 46%, 14%);
  }

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 #131c33

RGB Code Hex Code Preview
rgb(19, 28, 51, 10%) #131c331a  
rgb(19, 28, 51, 20%) #131c3333  
rgb(19, 28, 51, 40%) #131c334C  
rgb(19, 28, 51, 60%) #131c3399  
rgb(19, 28, 51, 80%) #131c33CC  
rgb(19, 28, 51, 100%) #131c33FF  

Saturated and desaturated colors of #131c33

HSL Code Preview
hsl(223, 10%, 14%)  
hsl(223, 20%, 14%)  
hsl(223, 40%, 14%)  
hsl(223, 60%, 14%)  
hsl(223, 80%, 14%)  
hsl(223, 100%, 14%)  

#131c33 Color Usage In CSS

 body {
    color: #131c33;
    }
 p {
    color: rgb(19, 28, 51);
    }
 header {
    border-bottom:1px solid #131c33;
    }
Recent Random Colors