Random Color Generator

#3c0f8d Color

Color Codes
Hex Code #3c0f8d
RGB Code rgb(60, 15, 141)
HSL Code hsl(261, 81%, 31%)

#3c0f8d Color Syntax

rgb()

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

 main {
    background-color: rgb(60, 15, 141);
   }

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(261, 81%, 31%);
  }

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 #3c0f8d

RGB Code Hex Code Preview
rgb(60, 15, 141, 10%) #3c0f8d1a  
rgb(60, 15, 141, 20%) #3c0f8d33  
rgb(60, 15, 141, 40%) #3c0f8d4C  
rgb(60, 15, 141, 60%) #3c0f8d99  
rgb(60, 15, 141, 80%) #3c0f8dCC  
rgb(60, 15, 141, 100%) #3c0f8dFF  

Saturated and desaturated colors of #3c0f8d

HSL Code Preview
hsl(261, 10%, 31%)  
hsl(261, 20%, 31%)  
hsl(261, 40%, 31%)  
hsl(261, 60%, 31%)  
hsl(261, 80%, 31%)  
hsl(261, 100%, 31%)  

#3c0f8d Color Usage In CSS

 body {
    color: #3c0f8d;
    }
 p {
    color: rgb(60, 15, 141);
    }
 header {
    border-bottom:1px solid #3c0f8d;
    }
Recent Random Colors