Random Color Generator

#770d68 Color

Color Codes
Hex Code #770d68
RGB Code rgb(119, 13, 104)
HSL Code hsl(308, 80%, 26%)

#770d68 Color Syntax

rgb()

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

 main {
    background-color: rgb(119, 13, 104);
   }

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(308, 80%, 26%);
  }

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 #770d68

RGB Code Hex Code Preview
rgb(119, 13, 104, 10%) #770d681a  
rgb(119, 13, 104, 20%) #770d6833  
rgb(119, 13, 104, 40%) #770d684C  
rgb(119, 13, 104, 60%) #770d6899  
rgb(119, 13, 104, 80%) #770d68CC  
rgb(119, 13, 104, 100%) #770d68FF  

Saturated and desaturated colors of #770d68

HSL Code Preview
hsl(308, 10%, 26%)  
hsl(308, 20%, 26%)  
hsl(308, 40%, 26%)  
hsl(308, 60%, 26%)  
hsl(308, 80%, 26%)  
hsl(308, 100%, 26%)  

#770d68 Color Usage In CSS

 body {
    color: #770d68;
    }
 p {
    color: rgb(119, 13, 104);
    }
 header {
    border-bottom:1px solid #770d68;
    }
Recent Random Colors