Random Color Generator

#b0384d Color

Color Codes
Hex Code #b0384d
RGB Code rgb(176, 56, 77)
HSL Code hsl(350, 52%, 45%)

#b0384d Color Syntax

rgb()

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

 main {
    background-color: rgb(176, 56, 77);
   }

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(350, 52%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(176, 56, 77, 10%) #b0384d1a  
rgb(176, 56, 77, 20%) #b0384d33  
rgb(176, 56, 77, 40%) #b0384d4C  
rgb(176, 56, 77, 60%) #b0384d99  
rgb(176, 56, 77, 80%) #b0384dCC  
rgb(176, 56, 77, 100%) #b0384dFF  

Saturated and desaturated colors of #b0384d

HSL Code Preview
hsl(350, 10%, 45%)  
hsl(350, 20%, 45%)  
hsl(350, 40%, 45%)  
hsl(350, 60%, 45%)  
hsl(350, 80%, 45%)  
hsl(350, 100%, 45%)  

#b0384d Color Usage In CSS

 body {
    color: #b0384d;
    }
 p {
    color: rgb(176, 56, 77);
    }
 header {
    border-bottom:1px solid #b0384d;
    }
Recent Random Colors