Random Color Generator

#b61178 Color

Color Codes
Hex Code #b61178
RGB Code rgb(182, 17, 120)
HSL Code hsl(323, 83%, 39%)

#b61178 Color Syntax

rgb()

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

 main {
    background-color: rgb(182, 17, 120);
   }

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(323, 83%, 39%);
  }

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

RGB Code Hex Code Preview
rgb(182, 17, 120, 10%) #b611781a  
rgb(182, 17, 120, 20%) #b6117833  
rgb(182, 17, 120, 40%) #b611784C  
rgb(182, 17, 120, 60%) #b6117899  
rgb(182, 17, 120, 80%) #b61178CC  
rgb(182, 17, 120, 100%) #b61178FF  

Saturated and desaturated colors of #b61178

HSL Code Preview
hsl(323, 10%, 39%)  
hsl(323, 20%, 39%)  
hsl(323, 40%, 39%)  
hsl(323, 60%, 39%)  
hsl(323, 80%, 39%)  
hsl(323, 100%, 39%)  

#b61178 Color Usage In CSS

 body {
    color: #b61178;
    }
 p {
    color: rgb(182, 17, 120);
    }
 header {
    border-bottom:1px solid #b61178;
    }
Recent Random Colors