Random Color Generator

#b06154 Color

Color Codes
Hex Code #b06154
RGB Code rgb(176, 97, 84)
HSL Code hsl(8, 37%, 51%)

#b06154 Color Syntax

rgb()

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

 main {
    background-color: rgb(176, 97, 84);
   }

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(8, 37%, 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 #b06154

RGB Code Hex Code Preview
rgb(176, 97, 84, 10%) #b061541a  
rgb(176, 97, 84, 20%) #b0615433  
rgb(176, 97, 84, 40%) #b061544C  
rgb(176, 97, 84, 60%) #b0615499  
rgb(176, 97, 84, 80%) #b06154CC  
rgb(176, 97, 84, 100%) #b06154FF  

Saturated and desaturated colors of #b06154

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

#b06154 Color Usage In CSS

 body {
    color: #b06154;
    }
 p {
    color: rgb(176, 97, 84);
    }
 header {
    border-bottom:1px solid #b06154;
    }
Recent Random Colors