HEX: #E6EADB
RGB: (230,234,219)
#E6EADB contains red, green and blue colors in about the same proportion. Web safe color of #E6EADB is #CCFFCC (or #CFC).
#E6EADB color RGB value is (230,234,219).
RGB: (230,234,219) (90%,92%,86%)
R 230 of 255 = 90%
G 234 of 255 = 92%
B 219 of 255 = 86%
R + G + B ~ 89%. #E6EADB is light color.
R + G + B =
230 + 234 + 219 = 683 (100%)
R 230 of 683 ~ 33.67%
G 234 of 683 ~ 34.26%
B 219 of 683 ~ 32.06%
#E6EADB color CMYK value is (2,0,6,8).
CMYK: (2,0,6,8) C2M0Y6K8 (2%,0%,6%,8%) (0.02/0.00/0.06/0.08)
E6 | EA | DB | |
---|---|---|---|
RGB | 230 | 234 | 219 |
HSL | 76° | 26.32% | 88.82% |
HSB/HSV | 76° | 6.41% | 91.76% |
CMYK | 1.71% | 0.00% | 6.41% |
8.24% |
HEX | E6 | EA | DB |
Decimal | 230 | 234 | 219 |
Binary | 11100110 | 11101010 | 11011011 |
Octal | 346 | 352 | 333 |
Examples of css and html codes for elements with #E6EADB color. Also use rgb(230,234,219) instead hex code.
.myTextColor { color: #E6EADB; }
<p style="color:#E6EADB">This sample text font color is #E6EADB.</p>
This text font color is #E6EADB.
.myBgColor { background-color: #E6EADB; }
<div style="background-color:#E6EADB">Inner text</div>
This div background color is #E6EADB.
.myBorderColor { border: 1px solid #E6EADB; }
<div style="border:3px solid #E6EADB">Div</div>
This div border color is #E6EADB.
.myOpacity80 { color: #E6EADB; opacity: 0.8; }
<p style="color:#E6EADB;opacity:0.8;">80%</p>
Text with #E6EADB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6EADB;}
<p style="text-shadow: 3px 3px 1px #E6EADB">Text here.</p>
This text has shadow with #E6EADB color.
.textShadow {text-shadow: 3px 3px 1px #E6EADB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6EADB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6EADB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6EADB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6EADB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6EADB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6EADB; -webkit-box-shadow: 1px 1px 3px 2px #E6EADB; box-shadow: 1px 1px 3px 2px #E6EADB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6EADB; -webkit-box-shadow: 1px 1px 3px 2px #E6EADB; box-shadow:1px 1px 3px 2px #E6EADB;">
Div content here</div>
This text has color #E6EADB on black background.
This text has color #E6EADB on white background.
This text has black color on #E6EADB background.
This text has white color on #E6EADB background.