HEX: #E1E6DA
RGB: (225,230,218)
#E1E6DA contains red, green and blue colors in about the same proportion. Web safe color of #E1E6DA is #CCCCCC (or #CCC).
#E1E6DA color RGB value is (225,230,218).
RGB: (225,230,218) (88%,90%,85%)
R 225 of 255 = 88%
G 230 of 255 = 90%
B 218 of 255 = 85%
R + G + B ~ 88%. #E1E6DA is light color.
R + G + B =
225 + 230 + 218 = 673 (100%)
R 225 of 673 ~ 33.43%
G 230 of 673 ~ 34.18%
B 218 of 673 ~ 32.39%
#E1E6DA color CMYK value is (2,0,5,10).
CMYK: (2,0,5,10) C2M0Y5K10 (2%,0%,5%,10%) (0.02/0.00/0.05/0.10)
E1 | E6 | DA | |
---|---|---|---|
RGB | 225 | 230 | 218 |
HSL | 85° | 19.35% | 87.84% |
HSB/HSV | 85° | 5.22% | 90.20% |
CMYK | 2.17% | 0.00% | 5.22% |
9.80% |
HEX | E1 | E6 | DA |
Decimal | 225 | 230 | 218 |
Binary | 11100001 | 11100110 | 11011010 |
Octal | 341 | 346 | 332 |
Examples of css and html codes for elements with #E1E6DA color. Also use rgb(225,230,218) instead hex code.
.myTextColor { color: #E1E6DA; }
<p style="color:#E1E6DA">This sample text font color is #E1E6DA.</p>
This text font color is #E1E6DA.
.myBgColor { background-color: #E1E6DA; }
<div style="background-color:#E1E6DA">Inner text</div>
This div background color is #E1E6DA.
.myBorderColor { border: 1px solid #E1E6DA; }
<div style="border:3px solid #E1E6DA">Div</div>
This div border color is #E1E6DA.
.myOpacity80 { color: #E1E6DA; opacity: 0.8; }
<p style="color:#E1E6DA;opacity:0.8;">80%</p>
Text with #E1E6DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1E6DA;}
<p style="text-shadow: 3px 3px 1px #E1E6DA">Text here.</p>
This text has shadow with #E1E6DA color.
.textShadow {text-shadow: 3px 3px 1px #E1E6DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1E6DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1E6DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1E6DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1E6DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1E6DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1E6DA; -webkit-box-shadow: 1px 1px 3px 2px #E1E6DA; box-shadow: 1px 1px 3px 2px #E1E6DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1E6DA; -webkit-box-shadow: 1px 1px 3px 2px #E1E6DA; box-shadow:1px 1px 3px 2px #E1E6DA;">
Div content here</div>
This text has color #E1E6DA on black background.
This text has color #E1E6DA on white background.
This text has black color on #E1E6DA background.
This text has white color on #E1E6DA background.