Random Color Generator

#842330 Color

Color Codes
Hex Code #842330
RGB Code rgb(132, 35, 48)
HSL Code hsl(352, 58%, 33%)

#842330 Color Syntax

rgb()

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

 main {
    background-color: rgb(132, 35, 48);
   }

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, 58%, 33%);
  }

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

RGB Code Hex Code Preview
rgb(132, 35, 48, 10%) #8423301a  
rgb(132, 35, 48, 20%) #84233033  
rgb(132, 35, 48, 40%) #8423304C  
rgb(132, 35, 48, 60%) #84233099  
rgb(132, 35, 48, 80%) #842330CC  
rgb(132, 35, 48, 100%) #842330FF  

Saturated and desaturated colors of #842330

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

#842330 Color Usage In CSS

 body {
    color: #842330;
    }
 p {
    color: rgb(132, 35, 48);
    }
 header {
    border-bottom:1px solid #842330;
    }
Recent Random Colors