Random Color Generator

#a43233 Color

Color Codes
Hex Code #a43233
RGB Code rgb(164, 50, 51)
HSL Code hsl(359, 53%, 42%)

#a43233 Color Syntax

rgb()

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

 main {
    background-color: rgb(164, 50, 51);
   }

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(359, 53%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(164, 50, 51, 10%) #a432331a  
rgb(164, 50, 51, 20%) #a4323333  
rgb(164, 50, 51, 40%) #a432334C  
rgb(164, 50, 51, 60%) #a4323399  
rgb(164, 50, 51, 80%) #a43233CC  
rgb(164, 50, 51, 100%) #a43233FF  

Saturated and desaturated colors of #a43233

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

#a43233 Color Usage In CSS

 body {
    color: #a43233;
    }
 p {
    color: rgb(164, 50, 51);
    }
 header {
    border-bottom:1px solid #a43233;
    }
Recent Random Colors