Random Color Generator

#b65066 Color

Color Codes
Hex Code #b65066
RGB Code rgb(182, 80, 102)
HSL Code hsl(347, 41%, 51%)

#b65066 Color Syntax

rgb()

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

 main {
    background-color: rgb(182, 80, 102);
   }

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, 41%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(182, 80, 102, 10%) #b650661a  
rgb(182, 80, 102, 20%) #b6506633  
rgb(182, 80, 102, 40%) #b650664C  
rgb(182, 80, 102, 60%) #b6506699  
rgb(182, 80, 102, 80%) #b65066CC  
rgb(182, 80, 102, 100%) #b65066FF  

Saturated and desaturated colors of #b65066

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

#b65066 Color Usage In CSS

 body {
    color: #b65066;
    }
 p {
    color: rgb(182, 80, 102);
    }
 header {
    border-bottom:1px solid #b65066;
    }
Recent Random Colors