Random Color Generator

#774fde Color

Color Codes
Hex Code #774fde
RGB Code rgb(119, 79, 222)
HSL Code hsl(257, 68%, 59%)

#774fde Color Syntax

rgb()

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

 main {
    background-color: rgb(119, 79, 222);
   }

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, 68%, 59%);
  }

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 #774fde

RGB Code Hex Code Preview
rgb(119, 79, 222, 10%) #774fde1a  
rgb(119, 79, 222, 20%) #774fde33  
rgb(119, 79, 222, 40%) #774fde4C  
rgb(119, 79, 222, 60%) #774fde99  
rgb(119, 79, 222, 80%) #774fdeCC  
rgb(119, 79, 222, 100%) #774fdeFF  

Saturated and desaturated colors of #774fde

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

#774fde Color Usage In CSS

 body {
    color: #774fde;
    }
 p {
    color: rgb(119, 79, 222);
    }
 header {
    border-bottom:1px solid #774fde;
    }
Recent Random Colors