Random Color Generator

#100d21 Color

Color Codes
Hex Code #100d21
RGB Code rgb(16, 13, 33)
HSL Code hsl(249, 43%, 9%)

#100d21 Color Syntax

rgb()

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

 main {
    background-color: rgb(16, 13, 33);
   }

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(249, 43%, 9%);
  }

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 #100d21

RGB Code Hex Code Preview
rgb(16, 13, 33, 10%) #100d211a  
rgb(16, 13, 33, 20%) #100d2133  
rgb(16, 13, 33, 40%) #100d214C  
rgb(16, 13, 33, 60%) #100d2199  
rgb(16, 13, 33, 80%) #100d21CC  
rgb(16, 13, 33, 100%) #100d21FF  

Saturated and desaturated colors of #100d21

HSL Code Preview
hsl(249, 10%, 9%)  
hsl(249, 20%, 9%)  
hsl(249, 40%, 9%)  
hsl(249, 60%, 9%)  
hsl(249, 80%, 9%)  
hsl(249, 100%, 9%)  

#100d21 Color Usage In CSS

 body {
    color: #100d21;
    }
 p {
    color: rgb(16, 13, 33);
    }
 header {
    border-bottom:1px solid #100d21;
    }
Recent Random Colors