Random Color Generator

#3512a8 Color

Color Codes
Hex Code #3512a8
RGB Code rgb(53, 18, 168)
HSL Code hsl(254, 81%, 36%)

#3512a8 Color Syntax

rgb()

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

 main {
    background-color: rgb(53, 18, 168);
   }

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(254, 81%, 36%);
  }

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 #3512a8

RGB Code Hex Code Preview
rgb(53, 18, 168, 10%) #3512a81a  
rgb(53, 18, 168, 20%) #3512a833  
rgb(53, 18, 168, 40%) #3512a84C  
rgb(53, 18, 168, 60%) #3512a899  
rgb(53, 18, 168, 80%) #3512a8CC  
rgb(53, 18, 168, 100%) #3512a8FF  

Saturated and desaturated colors of #3512a8

HSL Code Preview
hsl(254, 10%, 36%)  
hsl(254, 20%, 36%)  
hsl(254, 40%, 36%)  
hsl(254, 60%, 36%)  
hsl(254, 80%, 36%)  
hsl(254, 100%, 36%)  

#3512a8 Color Usage In CSS

 body {
    color: #3512a8;
    }
 p {
    color: rgb(53, 18, 168);
    }
 header {
    border-bottom:1px solid #3512a8;
    }
Recent Random Colors