Random Color Generator

#8b14ed Color

Color Codes
Hex Code #8b14ed
RGB Code rgb(139, 20, 237)
HSL Code hsl(273, 86%, 50%)

#8b14ed Color Syntax

rgb()

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

 main {
    background-color: rgb(139, 20, 237);
   }

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(273, 86%, 50%);
  }

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 #8b14ed

RGB Code Hex Code Preview
rgb(139, 20, 237, 10%) #8b14ed1a  
rgb(139, 20, 237, 20%) #8b14ed33  
rgb(139, 20, 237, 40%) #8b14ed4C  
rgb(139, 20, 237, 60%) #8b14ed99  
rgb(139, 20, 237, 80%) #8b14edCC  
rgb(139, 20, 237, 100%) #8b14edFF  

Saturated and desaturated colors of #8b14ed

HSL Code Preview
hsl(273, 10%, 50%)  
hsl(273, 20%, 50%)  
hsl(273, 40%, 50%)  
hsl(273, 60%, 50%)  
hsl(273, 80%, 50%)  
hsl(273, 100%, 50%)  

#8b14ed Color Usage In CSS

 body {
    color: #8b14ed;
    }
 p {
    color: rgb(139, 20, 237);
    }
 header {
    border-bottom:1px solid #8b14ed;
    }
Recent Random Colors