Random Color Generator

#863a55 Color

Color Codes
Hex Code #863a55
RGB Code rgb(134, 58, 85)
HSL Code hsl(339, 40%, 38%)

#863a55 Color Syntax

rgb()

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

 main {
    background-color: rgb(134, 58, 85);
   }

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(339, 40%, 38%);
  }

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 #863a55

RGB Code Hex Code Preview
rgb(134, 58, 85, 10%) #863a551a  
rgb(134, 58, 85, 20%) #863a5533  
rgb(134, 58, 85, 40%) #863a554C  
rgb(134, 58, 85, 60%) #863a5599  
rgb(134, 58, 85, 80%) #863a55CC  
rgb(134, 58, 85, 100%) #863a55FF  

Saturated and desaturated colors of #863a55

HSL Code Preview
hsl(339, 10%, 38%)  
hsl(339, 20%, 38%)  
hsl(339, 40%, 38%)  
hsl(339, 60%, 38%)  
hsl(339, 80%, 38%)  
hsl(339, 100%, 38%)  

#863a55 Color Usage In CSS

 body {
    color: #863a55;
    }
 p {
    color: rgb(134, 58, 85);
    }
 header {
    border-bottom:1px solid #863a55;
    }
Recent Random Colors