HEX: #E1DCBB
RGB: (225,220,187)
#E1DCBB contains red, green and blue colors in about the same proportion. Web safe color of #E1DCBB is #CCCCCC (or #CCC).
#E1DCBB color RGB value is (225,220,187).
RGB: (225,220,187) (88%,86%,73%)
R 225 of 255 = 88%
G 220 of 255 = 86%
B 187 of 255 = 73%
R + G + B ~ 82%. #E1DCBB is quite light color.
R + G + B =
225 + 220 + 187 = 632 (100%)
R 225 of 632 ~ 35.6%
G 220 of 632 ~ 34.81%
B 187 of 632 ~ 29.59%
#E1DCBB color CMYK value is (0,2,17,12).
CMYK: (0,2,17,12) C0M2Y17K12 (0%,2%,17%,12%) (0.00/0.02/0.17/0.12)
E1 | DC | BB | |
---|---|---|---|
RGB | 225 | 220 | 187 |
HSL | 52° | 38.78% | 80.78% |
HSB/HSV | 52° | 16.89% | 88.24% |
CMYK | 0.00% | 2.22% | 16.89% |
11.76% |
HEX | E1 | DC | BB |
Decimal | 225 | 220 | 187 |
Binary | 11100001 | 11011100 | 10111011 |
Octal | 341 | 334 | 273 |
Examples of css and html codes for elements with #E1DCBB color. Also use rgb(225,220,187) instead hex code.
.myTextColor { color: #E1DCBB; }
<p style="color:#E1DCBB">This sample text font color is #E1DCBB.</p>
This text font color is #E1DCBB.
.myBgColor { background-color: #E1DCBB; }
<div style="background-color:#E1DCBB">Inner text</div>
This div background color is #E1DCBB.
.myBorderColor { border: 1px solid #E1DCBB; }
<div style="border:3px solid #E1DCBB">Div</div>
This div border color is #E1DCBB.
.myOpacity80 { color: #E1DCBB; opacity: 0.8; }
<p style="color:#E1DCBB;opacity:0.8;">80%</p>
Text with #E1DCBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1DCBB;}
<p style="text-shadow: 3px 3px 1px #E1DCBB">Text here.</p>
This text has shadow with #E1DCBB color.
.textShadow {text-shadow: 3px 3px 1px #E1DCBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1DCBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1DCBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1DCBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1DCBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1DCBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1DCBB; -webkit-box-shadow: 1px 1px 3px 2px #E1DCBB; box-shadow: 1px 1px 3px 2px #E1DCBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1DCBB; -webkit-box-shadow: 1px 1px 3px 2px #E1DCBB; box-shadow:1px 1px 3px 2px #E1DCBB;">
Div content here</div>
This text has color #E1DCBB on black background.
This text has color #E1DCBB on white background.
This text has black color on #E1DCBB background.
This text has white color on #E1DCBB background.