Random Color Generator

#2a1713 Color

Color Codes
Hex Code #2a1713
RGB Code rgb(42, 23, 19)
HSL Code hsl(10, 38%, 12%)

#2a1713 Color Syntax

rgb()

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

 main {
    background-color: rgb(42, 23, 19);
   }

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(10, 38%, 12%);
  }

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 #2a1713

RGB Code Hex Code Preview
rgb(42, 23, 19, 10%) #2a17131a  
rgb(42, 23, 19, 20%) #2a171333  
rgb(42, 23, 19, 40%) #2a17134C  
rgb(42, 23, 19, 60%) #2a171399  
rgb(42, 23, 19, 80%) #2a1713CC  
rgb(42, 23, 19, 100%) #2a1713FF  

Saturated and desaturated colors of #2a1713

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

#2a1713 Color Usage In CSS

 body {
    color: #2a1713;
    }
 p {
    color: rgb(42, 23, 19);
    }
 header {
    border-bottom:1px solid #2a1713;
    }
Recent Random Colors