Random Color Generator

#b86074 Color

Color Codes
Hex Code #b86074
RGB Code rgb(184, 96, 116)
HSL Code hsl(346, 38%, 55%)

#b86074 Color Syntax

rgb()

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

 main {
    background-color: rgb(184, 96, 116);
   }

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(346, 38%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(184, 96, 116, 10%) #b860741a  
rgb(184, 96, 116, 20%) #b8607433  
rgb(184, 96, 116, 40%) #b860744C  
rgb(184, 96, 116, 60%) #b8607499  
rgb(184, 96, 116, 80%) #b86074CC  
rgb(184, 96, 116, 100%) #b86074FF  

Saturated and desaturated colors of #b86074

HSL Code Preview
hsl(346, 10%, 55%)  
hsl(346, 20%, 55%)  
hsl(346, 40%, 55%)  
hsl(346, 60%, 55%)  
hsl(346, 80%, 55%)  
hsl(346, 100%, 55%)  

#b86074 Color Usage In CSS

 body {
    color: #b86074;
    }
 p {
    color: rgb(184, 96, 116);
    }
 header {
    border-bottom:1px solid #b86074;
    }
Recent Random Colors