Random Color Generator

#eb46c3 Color

Color Codes
Hex Code #eb46c3
RGB Code rgb(235, 70, 195)
HSL Code hsl(315, 80%, 60%)

#eb46c3 Color Syntax

rgb()

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

 main {
    background-color: rgb(235, 70, 195);
   }

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(315, 80%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(235, 70, 195, 10%) #eb46c31a  
rgb(235, 70, 195, 20%) #eb46c333  
rgb(235, 70, 195, 40%) #eb46c34C  
rgb(235, 70, 195, 60%) #eb46c399  
rgb(235, 70, 195, 80%) #eb46c3CC  
rgb(235, 70, 195, 100%) #eb46c3FF  

Saturated and desaturated colors of #eb46c3

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

#eb46c3 Color Usage In CSS

 body {
    color: #eb46c3;
    }
 p {
    color: rgb(235, 70, 195);
    }
 header {
    border-bottom:1px solid #eb46c3;
    }
Recent Random Colors