Random Color Generator

#b83752 Color

Color Codes
Hex Code #b83752
RGB Code rgb(184, 55, 82)
HSL Code hsl(347, 54%, 47%)

#b83752 Color Syntax

rgb()

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

 main {
    background-color: rgb(184, 55, 82);
   }

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, 54%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(184, 55, 82, 10%) #b837521a  
rgb(184, 55, 82, 20%) #b8375233  
rgb(184, 55, 82, 40%) #b837524C  
rgb(184, 55, 82, 60%) #b8375299  
rgb(184, 55, 82, 80%) #b83752CC  
rgb(184, 55, 82, 100%) #b83752FF  

Saturated and desaturated colors of #b83752

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

#b83752 Color Usage In CSS

 body {
    color: #b83752;
    }
 p {
    color: rgb(184, 55, 82);
    }
 header {
    border-bottom:1px solid #b83752;
    }
Recent Random Colors