Random Color Generator

#b14a4e Color

Color Codes
Hex Code #b14a4e
RGB Code rgb(177, 74, 78)
HSL Code hsl(358, 41%, 49%)

#b14a4e Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 74, 78);
   }

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(358, 41%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(177, 74, 78, 10%) #b14a4e1a  
rgb(177, 74, 78, 20%) #b14a4e33  
rgb(177, 74, 78, 40%) #b14a4e4C  
rgb(177, 74, 78, 60%) #b14a4e99  
rgb(177, 74, 78, 80%) #b14a4eCC  
rgb(177, 74, 78, 100%) #b14a4eFF  

Saturated and desaturated colors of #b14a4e

HSL Code Preview
hsl(358, 10%, 49%)  
hsl(358, 20%, 49%)  
hsl(358, 40%, 49%)  
hsl(358, 60%, 49%)  
hsl(358, 80%, 49%)  
hsl(358, 100%, 49%)  

#b14a4e Color Usage In CSS

 body {
    color: #b14a4e;
    }
 p {
    color: rgb(177, 74, 78);
    }
 header {
    border-bottom:1px solid #b14a4e;
    }
Recent Random Colors