HEX: #EBDAB4
RGB: (235,218,180)
#EBDAB4 contains red, green and blue colors in about the same proportion. Web safe color of #EBDAB4 is #FFCCCC (or #FCC).
#EBDAB4 color RGB value is (235,218,180).
RGB: (235,218,180) (92%,85%,71%)
R 235 of 255 = 92%
G 218 of 255 = 85%
B 180 of 255 = 71%
R + G + B ~ 83%. #EBDAB4 is quite light color.
R + G + B =
235 + 218 + 180 = 633 (100%)
R 235 of 633 ~ 37.12%
G 218 of 633 ~ 34.44%
B 180 of 633 ~ 28.44%
#EBDAB4 color CMYK value is (0,7,23,8).
CMYK: (0,7,23,8) C0M7Y23K8 (0%,7%,23%,8%) (0.00/0.07/0.23/0.08)
EB | DA | B4 | |
---|---|---|---|
RGB | 235 | 218 | 180 |
HSL | 41° | 57.89% | 81.37% |
HSB/HSV | 41° | 23.40% | 92.16% |
CMYK | 0.00% | 7.23% | 23.40% |
7.84% |
HEX | EB | DA | B4 |
Decimal | 235 | 218 | 180 |
Binary | 11101011 | 11011010 | 10110100 |
Octal | 353 | 332 | 264 |
Examples of css and html codes for elements with #EBDAB4 color. Also use rgb(235,218,180) instead hex code.
.myTextColor { color: #EBDAB4; }
<p style="color:#EBDAB4">This sample text font color is #EBDAB4.</p>
This text font color is #EBDAB4.
.myBgColor { background-color: #EBDAB4; }
<div style="background-color:#EBDAB4">Inner text</div>
This div background color is #EBDAB4.
.myBorderColor { border: 1px solid #EBDAB4; }
<div style="border:3px solid #EBDAB4">Div</div>
This div border color is #EBDAB4.
.myOpacity80 { color: #EBDAB4; opacity: 0.8; }
<p style="color:#EBDAB4;opacity:0.8;">80%</p>
Text with #EBDAB4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBDAB4;}
<p style="text-shadow: 3px 3px 1px #EBDAB4">Text here.</p>
This text has shadow with #EBDAB4 color.
.textShadow {text-shadow: 3px 3px 1px #EBDAB4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBDAB4, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBDAB4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBDAB4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBDAB4, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBDAB4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBDAB4; -webkit-box-shadow: 1px 1px 3px 2px #EBDAB4; box-shadow: 1px 1px 3px 2px #EBDAB4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBDAB4; -webkit-box-shadow: 1px 1px 3px 2px #EBDAB4; box-shadow:1px 1px 3px 2px #EBDAB4;">
Div content here</div>
This text has color #EBDAB4 on black background.
This text has color #EBDAB4 on white background.
This text has black color on #EBDAB4 background.
This text has white color on #EBDAB4 background.