HEX: #EBE6EA
RGB: (235,230,234)
#EBE6EA contains red, green and blue colors in about the same proportion. Web safe color of #EBE6EA is #FFCCFF (or #FCF).
#EBE6EA color RGB value is (235,230,234).
RGB: (235,230,234) (92%,90%,92%)
R 235 of 255 = 92%
G 230 of 255 = 90%
B 234 of 255 = 92%
R + G + B ~ 91%. #EBE6EA is light color.
R + G + B =
235 + 230 + 234 = 699 (100%)
R 235 of 699 ~ 33.62%
G 230 of 699 ~ 32.9%
B 234 of 699 ~ 33.48%
#EBE6EA color CMYK value is (0,2,0,8).
CMYK: (0,2,0,8) C0M2Y0K8 (0%,2%,0%,8%) (0.00/0.02/0.00/0.08)
EB | E6 | EA | |
---|---|---|---|
RGB | 235 | 230 | 234 |
HSL | 312° | 11.11% | 91.18% |
HSB/HSV | 312° | 2.13% | 92.16% |
CMYK | 0.00% | 2.13% | 0.43% |
7.84% |
HEX | EB | E6 | EA |
Decimal | 235 | 230 | 234 |
Binary | 11101011 | 11100110 | 11101010 |
Octal | 353 | 346 | 352 |
Examples of css and html codes for elements with #EBE6EA color. Also use rgb(235,230,234) instead hex code.
.myTextColor { color: #EBE6EA; }
<p style="color:#EBE6EA">This sample text font color is #EBE6EA.</p>
This text font color is #EBE6EA.
.myBgColor { background-color: #EBE6EA; }
<div style="background-color:#EBE6EA">Inner text</div>
This div background color is #EBE6EA.
.myBorderColor { border: 1px solid #EBE6EA; }
<div style="border:3px solid #EBE6EA">Div</div>
This div border color is #EBE6EA.
.myOpacity80 { color: #EBE6EA; opacity: 0.8; }
<p style="color:#EBE6EA;opacity:0.8;">80%</p>
Text with #EBE6EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBE6EA;}
<p style="text-shadow: 3px 3px 1px #EBE6EA">Text here.</p>
This text has shadow with #EBE6EA color.
.textShadow {text-shadow: 3px 3px 1px #EBE6EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBE6EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBE6EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBE6EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBE6EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBE6EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBE6EA; -webkit-box-shadow: 1px 1px 3px 2px #EBE6EA; box-shadow: 1px 1px 3px 2px #EBE6EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBE6EA; -webkit-box-shadow: 1px 1px 3px 2px #EBE6EA; box-shadow:1px 1px 3px 2px #EBE6EA;">
Div content here</div>
This text has color #EBE6EA on black background.
This text has color #EBE6EA on white background.
This text has black color on #EBE6EA background.
This text has white color on #EBE6EA background.