HEX: #EB9EDE
RGB: (235,158,222)
#EB9EDE contains mainly red and blue colors. Web safe color of #EB9EDE is #FF99CC (or #F9C).
#EB9EDE color RGB value is (235,158,222).
RGB: (235,158,222) (92%,62%,87%)
R 235 of 255 = 92%
G 158 of 255 = 62%
B 222 of 255 = 87%
R + G + B ~ 80%. #EB9EDE is quite light color.
R + G + B =
235 + 158 + 222 = 615 (100%)
R 235 of 615 ~ 38.21%
G 158 of 615 ~ 25.69%
B 222 of 615 ~ 36.1%
#EB9EDE color CMYK value is (0,33,6,8).
CMYK: (0,33,6,8) C0M33Y6K8 (0%,33%,6%,8%) (0.00/0.33/0.06/0.08)
EB | 9E | DE | |
---|---|---|---|
RGB | 235 | 158 | 222 |
HSL | 310° | 65.81% | 77.06% |
HSB/HSV | 310° | 32.77% | 92.16% |
CMYK | 0.00% | 32.77% | 5.53% |
7.84% |
HEX | EB | 9E | DE |
Decimal | 235 | 158 | 222 |
Binary | 11101011 | 10011110 | 11011110 |
Octal | 353 | 236 | 336 |
Examples of css and html codes for elements with #EB9EDE color. Also use rgb(235,158,222) instead hex code.
.myTextColor { color: #EB9EDE; }
<p style="color:#EB9EDE">This sample text font color is #EB9EDE.</p>
This text font color is #EB9EDE.
.myBgColor { background-color: #EB9EDE; }
<div style="background-color:#EB9EDE">Inner text</div>
This div background color is #EB9EDE.
.myBorderColor { border: 1px solid #EB9EDE; }
<div style="border:3px solid #EB9EDE">Div</div>
This div border color is #EB9EDE.
.myOpacity80 { color: #EB9EDE; opacity: 0.8; }
<p style="color:#EB9EDE;opacity:0.8;">80%</p>
Text with #EB9EDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EB9EDE;}
<p style="text-shadow: 3px 3px 1px #EB9EDE">Text here.</p>
This text has shadow with #EB9EDE color.
.textShadow {text-shadow: 3px 3px 1px #EB9EDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EB9EDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EB9EDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EB9EDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EB9EDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EB9EDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EB9EDE; -webkit-box-shadow: 1px 1px 3px 2px #EB9EDE; box-shadow: 1px 1px 3px 2px #EB9EDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EB9EDE; -webkit-box-shadow: 1px 1px 3px 2px #EB9EDE; box-shadow:1px 1px 3px 2px #EB9EDE;">
Div content here</div>
This text has color #EB9EDE on black background.
This text has color #EB9EDE on white background.
This text has black color on #EB9EDE background.
This text has white color on #EB9EDE background.