Random Color Generator

#802365 Color

Color Codes
Hex Code #802365
RGB Code rgb(128, 35, 101)
HSL Code hsl(317, 57%, 32%)

#802365 Color Syntax

rgb()

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

 main {
    background-color: rgb(128, 35, 101);
   }

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(317, 57%, 32%);
  }

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 #802365

RGB Code Hex Code Preview
rgb(128, 35, 101, 10%) #8023651a  
rgb(128, 35, 101, 20%) #80236533  
rgb(128, 35, 101, 40%) #8023654C  
rgb(128, 35, 101, 60%) #80236599  
rgb(128, 35, 101, 80%) #802365CC  
rgb(128, 35, 101, 100%) #802365FF  

Saturated and desaturated colors of #802365

HSL Code Preview
hsl(317, 10%, 32%)  
hsl(317, 20%, 32%)  
hsl(317, 40%, 32%)  
hsl(317, 60%, 32%)  
hsl(317, 80%, 32%)  
hsl(317, 100%, 32%)  

#802365 Color Usage In CSS

 body {
    color: #802365;
    }
 p {
    color: rgb(128, 35, 101);
    }
 header {
    border-bottom:1px solid #802365;
    }
Recent Random Colors