Random Color Generator

#eb608c Color

Color Codes
Hex Code #eb608c
RGB Code rgb(235, 96, 140)
HSL Code hsl(341, 78%, 65%)

#eb608c Color Syntax

rgb()

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

 main {
    background-color: rgb(235, 96, 140);
   }

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(341, 78%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(235, 96, 140, 10%) #eb608c1a  
rgb(235, 96, 140, 20%) #eb608c33  
rgb(235, 96, 140, 40%) #eb608c4C  
rgb(235, 96, 140, 60%) #eb608c99  
rgb(235, 96, 140, 80%) #eb608cCC  
rgb(235, 96, 140, 100%) #eb608cFF  

Saturated and desaturated colors of #eb608c

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

#eb608c Color Usage In CSS

 body {
    color: #eb608c;
    }
 p {
    color: rgb(235, 96, 140);
    }
 header {
    border-bottom:1px solid #eb608c;
    }
Recent Random Colors