Random Color Generator

#3533ca Color

Color Codes
Hex Code #3533ca
RGB Code rgb(53, 51, 202)
HSL Code hsl(241, 60%, 50%)

#3533ca Color Syntax

rgb()

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

 main {
    background-color: rgb(53, 51, 202);
   }

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(241, 60%, 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 #3533ca

RGB Code Hex Code Preview
rgb(53, 51, 202, 10%) #3533ca1a  
rgb(53, 51, 202, 20%) #3533ca33  
rgb(53, 51, 202, 40%) #3533ca4C  
rgb(53, 51, 202, 60%) #3533ca99  
rgb(53, 51, 202, 80%) #3533caCC  
rgb(53, 51, 202, 100%) #3533caFF  

Saturated and desaturated colors of #3533ca

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

#3533ca Color Usage In CSS

 body {
    color: #3533ca;
    }
 p {
    color: rgb(53, 51, 202);
    }
 header {
    border-bottom:1px solid #3533ca;
    }
Recent Random Colors