HEX: #E3F3DD
RGB: (227,243,221)
#E3F3DD contains red, green and blue colors in about the same proportion. Web safe color of #E3F3DD is #CCFFCC (or #CFC).
#E3F3DD color RGB value is (227,243,221).
RGB: (227,243,221) (89%,95%,87%)
R 227 of 255 = 89%
G 243 of 255 = 95%
B 221 of 255 = 87%
R + G + B ~ 90%. #E3F3DD is light color.
R + G + B =
227 + 243 + 221 = 691 (100%)
R 227 of 691 ~ 32.85%
G 243 of 691 ~ 35.17%
B 221 of 691 ~ 31.98%
#E3F3DD color CMYK value is (7,0,9,5).
CMYK: (7,0,9,5) C7M0Y9K5 (7%,0%,9%,5%) (0.07/0.00/0.09/0.05)
E3 | F3 | DD | |
---|---|---|---|
RGB | 227 | 243 | 221 |
HSL | 104° | 47.83% | 90.98% |
HSB/HSV | 104° | 9.05% | 95.29% |
CMYK | 6.58% | 0.00% | 9.05% |
4.71% |
HEX | E3 | F3 | DD |
Decimal | 227 | 243 | 221 |
Binary | 11100011 | 11110011 | 11011101 |
Octal | 343 | 363 | 335 |
Examples of css and html codes for elements with #E3F3DD color. Also use rgb(227,243,221) instead hex code.
.myTextColor { color: #E3F3DD; }
<p style="color:#E3F3DD">This sample text font color is #E3F3DD.</p>
This text font color is #E3F3DD.
.myBgColor { background-color: #E3F3DD; }
<div style="background-color:#E3F3DD">Inner text</div>
This div background color is #E3F3DD.
.myBorderColor { border: 1px solid #E3F3DD; }
<div style="border:3px solid #E3F3DD">Div</div>
This div border color is #E3F3DD.
.myOpacity80 { color: #E3F3DD; opacity: 0.8; }
<p style="color:#E3F3DD;opacity:0.8;">80%</p>
Text with #E3F3DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E3F3DD;}
<p style="text-shadow: 3px 3px 1px #E3F3DD">Text here.</p>
This text has shadow with #E3F3DD color.
.textShadow {text-shadow: 3px 3px 1px #E3F3DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E3F3DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E3F3DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E3F3DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E3F3DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E3F3DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E3F3DD; -webkit-box-shadow: 1px 1px 3px 2px #E3F3DD; box-shadow: 1px 1px 3px 2px #E3F3DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E3F3DD; -webkit-box-shadow: 1px 1px 3px 2px #E3F3DD; box-shadow:1px 1px 3px 2px #E3F3DD;">
Div content here</div>
This text has color #E3F3DD on black background.
This text has color #E3F3DD on white background.
This text has black color on #E3F3DD background.
This text has white color on #E3F3DD background.