Random Color Generator

#130410 Color

Color Codes
Hex Code #130410
RGB Code rgb(19, 04, 16)
HSL Code hsl(312, 65%, 5%)

#130410 Color Syntax

rgb()

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

 main {
    background-color: rgb(19, 04, 16);
   }

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(312, 65%, 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 #130410

RGB Code Hex Code Preview
rgb(19, 04, 16, 10%) #1304101a  
rgb(19, 04, 16, 20%) #13041033  
rgb(19, 04, 16, 40%) #1304104C  
rgb(19, 04, 16, 60%) #13041099  
rgb(19, 04, 16, 80%) #130410CC  
rgb(19, 04, 16, 100%) #130410FF  

Saturated and desaturated colors of #130410

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

#130410 Color Usage In CSS

 body {
    color: #130410;
    }
 p {
    color: rgb(19, 04, 16);
    }
 header {
    border-bottom:1px solid #130410;
    }
Recent Random Colors