HEX: #EBEAD2
RGB: (235,234,210)
#EBEAD2 contains red, green and blue colors in about the same proportion. Web safe color of #EBEAD2 is #FFFFCC (or #FFC).
#EBEAD2 color RGB value is (235,234,210).
RGB: (235,234,210) (92%,92%,82%)
R 235 of 255 = 92%
G 234 of 255 = 92%
B 210 of 255 = 82%
R + G + B ~ 89%. #EBEAD2 is light color.
R + G + B =
235 + 234 + 210 = 679 (100%)
R 235 of 679 ~ 34.61%
G 234 of 679 ~ 34.46%
B 210 of 679 ~ 30.93%
#EBEAD2 color CMYK value is (0,0,11,8).
CMYK: (0,0,11,8) C0M0Y11K8 (0%,0%,11%,8%) (0.00/0.00/0.11/0.08)
EB | EA | D2 | |
---|---|---|---|
RGB | 235 | 234 | 210 |
HSL | 58° | 38.46% | 87.25% |
HSB/HSV | 58° | 10.64% | 92.16% |
CMYK | 0.00% | 0.43% | 10.64% |
7.84% |
HEX | EB | EA | D2 |
Decimal | 235 | 234 | 210 |
Binary | 11101011 | 11101010 | 11010010 |
Octal | 353 | 352 | 322 |
Examples of css and html codes for elements with #EBEAD2 color. Also use rgb(235,234,210) instead hex code.
.myTextColor { color: #EBEAD2; }
<p style="color:#EBEAD2">This sample text font color is #EBEAD2.</p>
This text font color is #EBEAD2.
.myBgColor { background-color: #EBEAD2; }
<div style="background-color:#EBEAD2">Inner text</div>
This div background color is #EBEAD2.
.myBorderColor { border: 1px solid #EBEAD2; }
<div style="border:3px solid #EBEAD2">Div</div>
This div border color is #EBEAD2.
.myOpacity80 { color: #EBEAD2; opacity: 0.8; }
<p style="color:#EBEAD2;opacity:0.8;">80%</p>
Text with #EBEAD2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBEAD2;}
<p style="text-shadow: 3px 3px 1px #EBEAD2">Text here.</p>
This text has shadow with #EBEAD2 color.
.textShadow {text-shadow: 3px 3px 1px #EBEAD2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBEAD2, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBEAD2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBEAD2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBEAD2, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBEAD2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBEAD2; -webkit-box-shadow: 1px 1px 3px 2px #EBEAD2; box-shadow: 1px 1px 3px 2px #EBEAD2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBEAD2; -webkit-box-shadow: 1px 1px 3px 2px #EBEAD2; box-shadow:1px 1px 3px 2px #EBEAD2;">
Div content here</div>
This text has color #EBEAD2 on black background.
This text has color #EBEAD2 on white background.
This text has black color on #EBEAD2 background.
This text has white color on #EBEAD2 background.