Random Color Generator

#783fe8 Color

Color Codes
Hex Code #783fe8
RGB Code rgb(120, 63, 232)
HSL Code hsl(260, 79%, 58%)

#783fe8 Color Syntax

rgb()

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

 main {
    background-color: rgb(120, 63, 232);
   }

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(260, 79%, 58%);
  }

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 #783fe8

RGB Code Hex Code Preview
rgb(120, 63, 232, 10%) #783fe81a  
rgb(120, 63, 232, 20%) #783fe833  
rgb(120, 63, 232, 40%) #783fe84C  
rgb(120, 63, 232, 60%) #783fe899  
rgb(120, 63, 232, 80%) #783fe8CC  
rgb(120, 63, 232, 100%) #783fe8FF  

Saturated and desaturated colors of #783fe8

HSL Code Preview
hsl(260, 10%, 58%)  
hsl(260, 20%, 58%)  
hsl(260, 40%, 58%)  
hsl(260, 60%, 58%)  
hsl(260, 80%, 58%)  
hsl(260, 100%, 58%)  

#783fe8 Color Usage In CSS

 body {
    color: #783fe8;
    }
 p {
    color: rgb(120, 63, 232);
    }
 header {
    border-bottom:1px solid #783fe8;
    }
Recent Random Colors