Random Color Generator

#85182f Color

Color Codes
Hex Code #85182f
RGB Code rgb(133, 24, 47)
HSL Code hsl(347, 69%, 31%)

#85182f Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 24, 47);
   }

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(347, 69%, 31%);
  }

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 #85182f

RGB Code Hex Code Preview
rgb(133, 24, 47, 10%) #85182f1a  
rgb(133, 24, 47, 20%) #85182f33  
rgb(133, 24, 47, 40%) #85182f4C  
rgb(133, 24, 47, 60%) #85182f99  
rgb(133, 24, 47, 80%) #85182fCC  
rgb(133, 24, 47, 100%) #85182fFF  

Saturated and desaturated colors of #85182f

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

#85182f Color Usage In CSS

 body {
    color: #85182f;
    }
 p {
    color: rgb(133, 24, 47);
    }
 header {
    border-bottom:1px solid #85182f;
    }
Recent Random Colors