Random Color Generator

#ba675e Color

Color Codes
Hex Code #ba675e
RGB Code rgb(186, 103, 94)
HSL Code hsl(6, 40%, 55%)

#ba675e Color Syntax

rgb()

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

 main {
    background-color: rgb(186, 103, 94);
   }

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(6, 40%, 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 #ba675e

RGB Code Hex Code Preview
rgb(186, 103, 94, 10%) #ba675e1a  
rgb(186, 103, 94, 20%) #ba675e33  
rgb(186, 103, 94, 40%) #ba675e4C  
rgb(186, 103, 94, 60%) #ba675e99  
rgb(186, 103, 94, 80%) #ba675eCC  
rgb(186, 103, 94, 100%) #ba675eFF  

Saturated and desaturated colors of #ba675e

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

#ba675e Color Usage In CSS

 body {
    color: #ba675e;
    }
 p {
    color: rgb(186, 103, 94);
    }
 header {
    border-bottom:1px solid #ba675e;
    }
Recent Random Colors