Random Color Generator

#b584c8 Color

Color Codes
Hex Code #b584c8
RGB Code rgb(181, 132, 200)
HSL Code hsl(283, 38%, 65%)

#b584c8 Color Syntax

rgb()

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

 main {
    background-color: rgb(181, 132, 200);
   }

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(283, 38%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(181, 132, 200, 10%) #b584c81a  
rgb(181, 132, 200, 20%) #b584c833  
rgb(181, 132, 200, 40%) #b584c84C  
rgb(181, 132, 200, 60%) #b584c899  
rgb(181, 132, 200, 80%) #b584c8CC  
rgb(181, 132, 200, 100%) #b584c8FF  

Saturated and desaturated colors of #b584c8

HSL Code Preview
hsl(283, 10%, 65%)  
hsl(283, 20%, 65%)  
hsl(283, 40%, 65%)  
hsl(283, 60%, 65%)  
hsl(283, 80%, 65%)  
hsl(283, 100%, 65%)  

#b584c8 Color Usage In CSS

 body {
    color: #b584c8;
    }
 p {
    color: rgb(181, 132, 200);
    }
 header {
    border-bottom:1px solid #b584c8;
    }
Recent Random Colors