Random Color Generator

#140319 Color

Color Codes
Hex Code #140319
RGB Code rgb(20, 03, 25)
HSL Code hsl(286, 79%, 5%)

#140319 Color Syntax

rgb()

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

 main {
    background-color: rgb(20, 03, 25);
   }

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(286, 79%, 5%);
  }

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 #140319

RGB Code Hex Code Preview
rgb(20, 03, 25, 10%) #1403191a  
rgb(20, 03, 25, 20%) #14031933  
rgb(20, 03, 25, 40%) #1403194C  
rgb(20, 03, 25, 60%) #14031999  
rgb(20, 03, 25, 80%) #140319CC  
rgb(20, 03, 25, 100%) #140319FF  

Saturated and desaturated colors of #140319

HSL Code Preview
hsl(286, 10%, 5%)  
hsl(286, 20%, 5%)  
hsl(286, 40%, 5%)  
hsl(286, 60%, 5%)  
hsl(286, 80%, 5%)  
hsl(286, 100%, 5%)  

#140319 Color Usage In CSS

 body {
    color: #140319;
    }
 p {
    color: rgb(20, 03, 25);
    }
 header {
    border-bottom:1px solid #140319;
    }
Recent Random Colors