HEX: #E5DBB2
RGB: (229,219,178)
#E5DBB2 contains red, green and blue colors in about the same proportion. Web safe color of #E5DBB2 is #CCCC99 (or #CC9).
#E5DBB2 color RGB value is (229,219,178).
RGB: (229,219,178) (90%,86%,70%)
R 229 of 255 = 90%
G 219 of 255 = 86%
B 178 of 255 = 70%
R + G + B ~ 82%. #E5DBB2 is quite light color.
R + G + B =
229 + 219 + 178 = 626 (100%)
R 229 of 626 ~ 36.58%
G 219 of 626 ~ 34.98%
B 178 of 626 ~ 28.43%
#E5DBB2 color CMYK value is (0,4,22,10).
CMYK: (0,4,22,10) C0M4Y22K10 (0%,4%,22%,10%) (0.00/0.04/0.22/0.10)
E5 | DB | B2 | |
---|---|---|---|
RGB | 229 | 219 | 178 |
HSL | 48° | 49.51% | 79.80% |
HSB/HSV | 48° | 22.27% | 89.80% |
CMYK | 0.00% | 4.37% | 22.27% |
10.20% |
HEX | E5 | DB | B2 |
Decimal | 229 | 219 | 178 |
Binary | 11100101 | 11011011 | 10110010 |
Octal | 345 | 333 | 262 |
Examples of css and html codes for elements with #E5DBB2 color. Also use rgb(229,219,178) instead hex code.
.myTextColor { color: #E5DBB2; }
<p style="color:#E5DBB2">This sample text font color is #E5DBB2.</p>
This text font color is #E5DBB2.
.myBgColor { background-color: #E5DBB2; }
<div style="background-color:#E5DBB2">Inner text</div>
This div background color is #E5DBB2.
.myBorderColor { border: 1px solid #E5DBB2; }
<div style="border:3px solid #E5DBB2">Div</div>
This div border color is #E5DBB2.
.myOpacity80 { color: #E5DBB2; opacity: 0.8; }
<p style="color:#E5DBB2;opacity:0.8;">80%</p>
Text with #E5DBB2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5DBB2;}
<p style="text-shadow: 3px 3px 1px #E5DBB2">Text here.</p>
This text has shadow with #E5DBB2 color.
.textShadow {text-shadow: 3px 3px 1px #E5DBB2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5DBB2, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5DBB2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5DBB2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5DBB2, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5DBB2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5DBB2; -webkit-box-shadow: 1px 1px 3px 2px #E5DBB2; box-shadow: 1px 1px 3px 2px #E5DBB2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5DBB2; -webkit-box-shadow: 1px 1px 3px 2px #E5DBB2; box-shadow:1px 1px 3px 2px #E5DBB2;">
Div content here</div>
This text has color #E5DBB2 on black background.
This text has color #E5DBB2 on white background.
This text has black color on #E5DBB2 background.
This text has white color on #E5DBB2 background.