Random Color Generator

#9114a7 Color

Color Codes
Hex Code #9114a7
RGB Code rgb(145, 20, 167)
HSL Code hsl(291, 79%, 37%)

#9114a7 Color Syntax

rgb()

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

 main {
    background-color: rgb(145, 20, 167);
   }

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(291, 79%, 37%);
  }

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 #9114a7

RGB Code Hex Code Preview
rgb(145, 20, 167, 10%) #9114a71a  
rgb(145, 20, 167, 20%) #9114a733  
rgb(145, 20, 167, 40%) #9114a74C  
rgb(145, 20, 167, 60%) #9114a799  
rgb(145, 20, 167, 80%) #9114a7CC  
rgb(145, 20, 167, 100%) #9114a7FF  

Saturated and desaturated colors of #9114a7

HSL Code Preview
hsl(291, 10%, 37%)  
hsl(291, 20%, 37%)  
hsl(291, 40%, 37%)  
hsl(291, 60%, 37%)  
hsl(291, 80%, 37%)  
hsl(291, 100%, 37%)  

#9114a7 Color Usage In CSS

 body {
    color: #9114a7;
    }
 p {
    color: rgb(145, 20, 167);
    }
 header {
    border-bottom:1px solid #9114a7;
    }
Recent Random Colors