HEX: #EBA7EA
RGB: (235,167,234)
#EBA7EA contains mainly red and blue colors. Web safe color of #EBA7EA is #FF99FF (or #F9F).
#EBA7EA color RGB value is (235,167,234).
RGB: (235,167,234) (92%,65%,92%)
R 235 of 255 = 92%
G 167 of 255 = 65%
B 234 of 255 = 92%
R + G + B ~ 83%. #EBA7EA is quite light color.
R + G + B =
235 + 167 + 234 = 636 (100%)
R 235 of 636 ~ 36.95%
G 167 of 636 ~ 26.26%
B 234 of 636 ~ 36.79%
#EBA7EA color CMYK value is (0,29,0,8).
CMYK: (0,29,0,8) C0M29Y0K8 (0%,29%,0%,8%) (0.00/0.29/0.00/0.08)
EB | A7 | EA | |
---|---|---|---|
RGB | 235 | 167 | 234 |
HSL | 301° | 62.96% | 78.82% |
HSB/HSV | 301° | 28.94% | 92.16% |
CMYK | 0.00% | 28.94% | 0.43% |
7.84% |
HEX | EB | A7 | EA |
Decimal | 235 | 167 | 234 |
Binary | 11101011 | 10100111 | 11101010 |
Octal | 353 | 247 | 352 |
Examples of css and html codes for elements with #EBA7EA color. Also use rgb(235,167,234) instead hex code.
.myTextColor { color: #EBA7EA; }
<p style="color:#EBA7EA">This sample text font color is #EBA7EA.</p>
This text font color is #EBA7EA.
.myBgColor { background-color: #EBA7EA; }
<div style="background-color:#EBA7EA">Inner text</div>
This div background color is #EBA7EA.
.myBorderColor { border: 1px solid #EBA7EA; }
<div style="border:3px solid #EBA7EA">Div</div>
This div border color is #EBA7EA.
.myOpacity80 { color: #EBA7EA; opacity: 0.8; }
<p style="color:#EBA7EA;opacity:0.8;">80%</p>
Text with #EBA7EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBA7EA;}
<p style="text-shadow: 3px 3px 1px #EBA7EA">Text here.</p>
This text has shadow with #EBA7EA color.
.textShadow {text-shadow: 3px 3px 1px #EBA7EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBA7EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBA7EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBA7EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBA7EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBA7EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBA7EA; -webkit-box-shadow: 1px 1px 3px 2px #EBA7EA; box-shadow: 1px 1px 3px 2px #EBA7EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBA7EA; -webkit-box-shadow: 1px 1px 3px 2px #EBA7EA; box-shadow:1px 1px 3px 2px #EBA7EA;">
Div content here</div>
This text has color #EBA7EA on black background.
This text has color #EBA7EA on white background.
This text has black color on #EBA7EA background.
This text has white color on #EBA7EA background.