Random Color Generator

#b80adb Color

Color Codes
Hex Code #b80adb
RGB Code rgb(184, 10, 219)
HSL Code hsl(290, 91%, 45%)

#b80adb Color Syntax

rgb()

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

 main {
    background-color: rgb(184, 10, 219);
   }

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(290, 91%, 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 #b80adb

RGB Code Hex Code Preview
rgb(184, 10, 219, 10%) #b80adb1a  
rgb(184, 10, 219, 20%) #b80adb33  
rgb(184, 10, 219, 40%) #b80adb4C  
rgb(184, 10, 219, 60%) #b80adb99  
rgb(184, 10, 219, 80%) #b80adbCC  
rgb(184, 10, 219, 100%) #b80adbFF  

Saturated and desaturated colors of #b80adb

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

#b80adb Color Usage In CSS

 body {
    color: #b80adb;
    }
 p {
    color: rgb(184, 10, 219);
    }
 header {
    border-bottom:1px solid #b80adb;
    }
Recent Random Colors