Random Color Generator

#763ffd Color

Color Codes
Hex Code #763ffd
RGB Code rgb(118, 63, 253)
HSL Code hsl(257, 98%, 62%)

#763ffd Color Syntax

rgb()

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

 main {
    background-color: rgb(118, 63, 253);
   }

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(257, 98%, 62%);
  }

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 #763ffd

RGB Code Hex Code Preview
rgb(118, 63, 253, 10%) #763ffd1a  
rgb(118, 63, 253, 20%) #763ffd33  
rgb(118, 63, 253, 40%) #763ffd4C  
rgb(118, 63, 253, 60%) #763ffd99  
rgb(118, 63, 253, 80%) #763ffdCC  
rgb(118, 63, 253, 100%) #763ffdFF  

Saturated and desaturated colors of #763ffd

HSL Code Preview
hsl(257, 10%, 62%)  
hsl(257, 20%, 62%)  
hsl(257, 40%, 62%)  
hsl(257, 60%, 62%)  
hsl(257, 80%, 62%)  
hsl(257, 100%, 62%)  

#763ffd Color Usage In CSS

 body {
    color: #763ffd;
    }
 p {
    color: rgb(118, 63, 253);
    }
 header {
    border-bottom:1px solid #763ffd;
    }
Recent Random Colors