HEX: #EAF0DB
RGB: (234,240,219)
#EAF0DB contains red, green and blue colors in about the same proportion. Web safe color of #EAF0DB is #FFFFCC (or #FFC).
#EAF0DB color RGB value is (234,240,219).
RGB: (234,240,219) (92%,94%,86%)
R 234 of 255 = 92%
G 240 of 255 = 94%
B 219 of 255 = 86%
R + G + B ~ 91%. #EAF0DB is light color.
R + G + B =
234 + 240 + 219 = 693 (100%)
R 234 of 693 ~ 33.77%
G 240 of 693 ~ 34.63%
B 219 of 693 ~ 31.6%
#EAF0DB color CMYK value is (3,0,9,6).
CMYK: (3,0,9,6) C3M0Y9K6 (3%,0%,9%,6%) (0.03/0.00/0.09/0.06)
EA | F0 | DB | |
---|---|---|---|
RGB | 234 | 240 | 219 |
HSL | 77° | 41.18% | 90.00% |
HSB/HSV | 77° | 8.75% | 94.12% |
CMYK | 2.50% | 0.00% | 8.75% |
5.88% |
HEX | EA | F0 | DB |
Decimal | 234 | 240 | 219 |
Binary | 11101010 | 11110000 | 11011011 |
Octal | 352 | 360 | 333 |
Examples of css and html codes for elements with #EAF0DB color. Also use rgb(234,240,219) instead hex code.
.myTextColor { color: #EAF0DB; }
<p style="color:#EAF0DB">This sample text font color is #EAF0DB.</p>
This text font color is #EAF0DB.
.myBgColor { background-color: #EAF0DB; }
<div style="background-color:#EAF0DB">Inner text</div>
This div background color is #EAF0DB.
.myBorderColor { border: 1px solid #EAF0DB; }
<div style="border:3px solid #EAF0DB">Div</div>
This div border color is #EAF0DB.
.myOpacity80 { color: #EAF0DB; opacity: 0.8; }
<p style="color:#EAF0DB;opacity:0.8;">80%</p>
Text with #EAF0DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EAF0DB;}
<p style="text-shadow: 3px 3px 1px #EAF0DB">Text here.</p>
This text has shadow with #EAF0DB color.
.textShadow {text-shadow: 3px 3px 1px #EAF0DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EAF0DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EAF0DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EAF0DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EAF0DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EAF0DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EAF0DB; -webkit-box-shadow: 1px 1px 3px 2px #EAF0DB; box-shadow: 1px 1px 3px 2px #EAF0DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EAF0DB; -webkit-box-shadow: 1px 1px 3px 2px #EAF0DB; box-shadow:1px 1px 3px 2px #EAF0DB;">
Div content here</div>
This text has color #EAF0DB on black background.
This text has color #EAF0DB on white background.
This text has black color on #EAF0DB background.
This text has white color on #EAF0DB background.