Random Color Generator

#bd5264 Color

Color Codes
Hex Code #bd5264
RGB Code rgb(189, 82, 100)
HSL Code hsl(350, 45%, 53%)

#bd5264 Color Syntax

rgb()

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

 main {
    background-color: rgb(189, 82, 100);
   }

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, 45%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(189, 82, 100, 10%) #bd52641a  
rgb(189, 82, 100, 20%) #bd526433  
rgb(189, 82, 100, 40%) #bd52644C  
rgb(189, 82, 100, 60%) #bd526499  
rgb(189, 82, 100, 80%) #bd5264CC  
rgb(189, 82, 100, 100%) #bd5264FF  

Saturated and desaturated colors of #bd5264

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

#bd5264 Color Usage In CSS

 body {
    color: #bd5264;
    }
 p {
    color: rgb(189, 82, 100);
    }
 header {
    border-bottom:1px solid #bd5264;
    }
Recent Random Colors