Random Color Generator

#e695b7 Color

Color Codes
Hex Code #e695b7
RGB Code rgb(230, 149, 183)
HSL Code hsl(335, 62%, 74%)

#e695b7 Color Syntax

rgb()

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

 main {
    background-color: rgb(230, 149, 183);
   }

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(335, 62%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(230, 149, 183, 10%) #e695b71a  
rgb(230, 149, 183, 20%) #e695b733  
rgb(230, 149, 183, 40%) #e695b74C  
rgb(230, 149, 183, 60%) #e695b799  
rgb(230, 149, 183, 80%) #e695b7CC  
rgb(230, 149, 183, 100%) #e695b7FF  

Saturated and desaturated colors of #e695b7

HSL Code Preview
hsl(335, 10%, 74%)  
hsl(335, 20%, 74%)  
hsl(335, 40%, 74%)  
hsl(335, 60%, 74%)  
hsl(335, 80%, 74%)  
hsl(335, 100%, 74%)  

#e695b7 Color Usage In CSS

 body {
    color: #e695b7;
    }
 p {
    color: rgb(230, 149, 183);
    }
 header {
    border-bottom:1px solid #e695b7;
    }
Recent Random Colors