Random Color Generator

#421c21 Color

Color Codes
Hex Code #421c21
RGB Code rgb(66, 28, 33)
HSL Code hsl(352, 40%, 18%)

#421c21 Color Syntax

rgb()

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

 main {
    background-color: rgb(66, 28, 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(352, 40%, 18%);
  }

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 #421c21

RGB Code Hex Code Preview
rgb(66, 28, 33, 10%) #421c211a  
rgb(66, 28, 33, 20%) #421c2133  
rgb(66, 28, 33, 40%) #421c214C  
rgb(66, 28, 33, 60%) #421c2199  
rgb(66, 28, 33, 80%) #421c21CC  
rgb(66, 28, 33, 100%) #421c21FF  

Saturated and desaturated colors of #421c21

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

#421c21 Color Usage In CSS

 body {
    color: #421c21;
    }
 p {
    color: rgb(66, 28, 33);
    }
 header {
    border-bottom:1px solid #421c21;
    }
Recent Random Colors