Random Color Generator

#15017c Color

Color Codes
Hex Code #15017c
RGB Code rgb(21, 01, 124)
HSL Code hsl(250, 98%, 25%)

#15017c Color Syntax

rgb()

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

 main {
    background-color: rgb(21, 01, 124);
   }

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(250, 98%, 25%);
  }

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 #15017c

RGB Code Hex Code Preview
rgb(21, 01, 124, 10%) #15017c1a  
rgb(21, 01, 124, 20%) #15017c33  
rgb(21, 01, 124, 40%) #15017c4C  
rgb(21, 01, 124, 60%) #15017c99  
rgb(21, 01, 124, 80%) #15017cCC  
rgb(21, 01, 124, 100%) #15017cFF  

Saturated and desaturated colors of #15017c

HSL Code Preview
hsl(250, 10%, 25%)  
hsl(250, 20%, 25%)  
hsl(250, 40%, 25%)  
hsl(250, 60%, 25%)  
hsl(250, 80%, 25%)  
hsl(250, 100%, 25%)  

#15017c Color Usage In CSS

 body {
    color: #15017c;
    }
 p {
    color: rgb(21, 01, 124);
    }
 header {
    border-bottom:1px solid #15017c;
    }
Recent Random Colors