HEX: #E4DBCE
RGB: (228,219,206)
#E4DBCE contains red, green and blue colors in about the same proportion. Web safe color of #E4DBCE is #CCCCCC (or #CCC).
#E4DBCE color RGB value is (228,219,206).
RGB: (228,219,206) (89%,86%,81%)
R 228 of 255 = 89%
G 219 of 255 = 86%
B 206 of 255 = 81%
R + G + B ~ 85%. #E4DBCE is quite light color.
R + G + B =
228 + 219 + 206 = 653 (100%)
R 228 of 653 ~ 34.92%
G 219 of 653 ~ 33.54%
B 206 of 653 ~ 31.55%
#E4DBCE color CMYK value is (0,4,10,11).
CMYK: (0,4,10,11) C0M4Y10K11 (0%,4%,10%,11%) (0.00/0.04/0.10/0.11)
E4 | DB | CE | |
---|---|---|---|
RGB | 228 | 219 | 206 |
HSL | 35° | 28.95% | 85.10% |
HSB/HSV | 35° | 9.65% | 89.41% |
CMYK | 0.00% | 3.95% | 9.65% |
10.59% |
HEX | E4 | DB | CE |
Decimal | 228 | 219 | 206 |
Binary | 11100100 | 11011011 | 11001110 |
Octal | 344 | 333 | 316 |
Examples of css and html codes for elements with #E4DBCE color. Also use rgb(228,219,206) instead hex code.
.myTextColor { color: #E4DBCE; }
<p style="color:#E4DBCE">This sample text font color is #E4DBCE.</p>
This text font color is #E4DBCE.
.myBgColor { background-color: #E4DBCE; }
<div style="background-color:#E4DBCE">Inner text</div>
This div background color is #E4DBCE.
.myBorderColor { border: 1px solid #E4DBCE; }
<div style="border:3px solid #E4DBCE">Div</div>
This div border color is #E4DBCE.
.myOpacity80 { color: #E4DBCE; opacity: 0.8; }
<p style="color:#E4DBCE;opacity:0.8;">80%</p>
Text with #E4DBCE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4DBCE;}
<p style="text-shadow: 3px 3px 1px #E4DBCE">Text here.</p>
This text has shadow with #E4DBCE color.
.textShadow {text-shadow: 3px 3px 1px #E4DBCE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4DBCE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4DBCE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4DBCE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4DBCE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4DBCE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4DBCE; -webkit-box-shadow: 1px 1px 3px 2px #E4DBCE; box-shadow: 1px 1px 3px 2px #E4DBCE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4DBCE; -webkit-box-shadow: 1px 1px 3px 2px #E4DBCE; box-shadow:1px 1px 3px 2px #E4DBCE;">
Div content here</div>
This text has color #E4DBCE on black background.
This text has color #E4DBCE on white background.
This text has black color on #E4DBCE background.
This text has white color on #E4DBCE background.