HEX: #EBD2AB
RGB: (235,210,171)
#EBD2AB contains mainly red and green colors. Web safe color of #EBD2AB is #FFCC99 (or #FC9).
#EBD2AB color RGB value is (235,210,171).
RGB: (235,210,171) (92%,82%,67%)
R 235 of 255 = 92%
G 210 of 255 = 82%
B 171 of 255 = 67%
R + G + B ~ 80%. #EBD2AB is quite light color.
R + G + B =
235 + 210 + 171 = 616 (100%)
R 235 of 616 ~ 38.15%
G 210 of 616 ~ 34.09%
B 171 of 616 ~ 27.76%
#EBD2AB color CMYK value is (0,11,27,8).
CMYK: (0,11,27,8) C0M11Y27K8 (0%,11%,27%,8%) (0.00/0.11/0.27/0.08)
EB | D2 | AB | |
---|---|---|---|
RGB | 235 | 210 | 171 |
HSL | 37° | 61.54% | 79.61% |
HSB/HSV | 37° | 27.23% | 92.16% |
CMYK | 0.00% | 10.64% | 27.23% |
7.84% |
HEX | EB | D2 | AB |
Decimal | 235 | 210 | 171 |
Binary | 11101011 | 11010010 | 10101011 |
Octal | 353 | 322 | 253 |
Examples of css and html codes for elements with #EBD2AB color. Also use rgb(235,210,171) instead hex code.
.myTextColor { color: #EBD2AB; }
<p style="color:#EBD2AB">This sample text font color is #EBD2AB.</p>
This text font color is #EBD2AB.
.myBgColor { background-color: #EBD2AB; }
<div style="background-color:#EBD2AB">Inner text</div>
This div background color is #EBD2AB.
.myBorderColor { border: 1px solid #EBD2AB; }
<div style="border:3px solid #EBD2AB">Div</div>
This div border color is #EBD2AB.
.myOpacity80 { color: #EBD2AB; opacity: 0.8; }
<p style="color:#EBD2AB;opacity:0.8;">80%</p>
Text with #EBD2AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBD2AB;}
<p style="text-shadow: 3px 3px 1px #EBD2AB">Text here.</p>
This text has shadow with #EBD2AB color.
.textShadow {text-shadow: 3px 3px 1px #EBD2AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBD2AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBD2AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBD2AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBD2AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBD2AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBD2AB; -webkit-box-shadow: 1px 1px 3px 2px #EBD2AB; box-shadow: 1px 1px 3px 2px #EBD2AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBD2AB; -webkit-box-shadow: 1px 1px 3px 2px #EBD2AB; box-shadow:1px 1px 3px 2px #EBD2AB;">
Div content here</div>
This text has color #EBD2AB on black background.
This text has color #EBD2AB on white background.
This text has black color on #EBD2AB background.
This text has white color on #EBD2AB background.