Random Color Generator

#e26fc2 Color

Color Codes
Hex Code #e26fc2
RGB Code rgb(226, 111, 194)
HSL Code hsl(317, 66%, 66%)

#e26fc2 Color Syntax

rgb()

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

 main {
    background-color: rgb(226, 111, 194);
   }

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

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

RGB Code Hex Code Preview
rgb(226, 111, 194, 10%) #e26fc21a  
rgb(226, 111, 194, 20%) #e26fc233  
rgb(226, 111, 194, 40%) #e26fc24C  
rgb(226, 111, 194, 60%) #e26fc299  
rgb(226, 111, 194, 80%) #e26fc2CC  
rgb(226, 111, 194, 100%) #e26fc2FF  

Saturated and desaturated colors of #e26fc2

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

#e26fc2 Color Usage In CSS

 body {
    color: #e26fc2;
    }
 p {
    color: rgb(226, 111, 194);
    }
 header {
    border-bottom:1px solid #e26fc2;
    }
Recent Random Colors