Random Color Generator

#8c153a Color

Color Codes
Hex Code #8c153a
RGB Code rgb(140, 21, 58)
HSL Code hsl(341, 74%, 32%)

#8c153a Color Syntax

rgb()

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

 main {
    background-color: rgb(140, 21, 58);
   }

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(341, 74%, 32%);
  }

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 #8c153a

RGB Code Hex Code Preview
rgb(140, 21, 58, 10%) #8c153a1a  
rgb(140, 21, 58, 20%) #8c153a33  
rgb(140, 21, 58, 40%) #8c153a4C  
rgb(140, 21, 58, 60%) #8c153a99  
rgb(140, 21, 58, 80%) #8c153aCC  
rgb(140, 21, 58, 100%) #8c153aFF  

Saturated and desaturated colors of #8c153a

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

#8c153a Color Usage In CSS

 body {
    color: #8c153a;
    }
 p {
    color: rgb(140, 21, 58);
    }
 header {
    border-bottom:1px solid #8c153a;
    }
Recent Random Colors