Random Color Generator

#4653fa Color

Color Codes
Hex Code #4653fa
RGB Code rgb(70, 83, 250)
HSL Code hsl(236, 95%, 63%)

#4653fa Color Syntax

rgb()

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

 main {
    background-color: rgb(70, 83, 250);
   }

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(236, 95%, 63%);
  }

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 #4653fa

RGB Code Hex Code Preview
rgb(70, 83, 250, 10%) #4653fa1a  
rgb(70, 83, 250, 20%) #4653fa33  
rgb(70, 83, 250, 40%) #4653fa4C  
rgb(70, 83, 250, 60%) #4653fa99  
rgb(70, 83, 250, 80%) #4653faCC  
rgb(70, 83, 250, 100%) #4653faFF  

Saturated and desaturated colors of #4653fa

HSL Code Preview
hsl(236, 10%, 63%)  
hsl(236, 20%, 63%)  
hsl(236, 40%, 63%)  
hsl(236, 60%, 63%)  
hsl(236, 80%, 63%)  
hsl(236, 100%, 63%)  

#4653fa Color Usage In CSS

 body {
    color: #4653fa;
    }
 p {
    color: rgb(70, 83, 250);
    }
 header {
    border-bottom:1px solid #4653fa;
    }
Recent Random Colors