HEX: #EDF6CC
RGB: (237,246,204)
#EDF6CC contains red, green and blue colors in about the same proportion. Web safe color of #EDF6CC is #FFFFCC (or #FFC).
#EDF6CC color RGB value is (237,246,204).
RGB: (237,246,204) (93%,96%,80%)
R 237 of 255 = 93%
G 246 of 255 = 96%
B 204 of 255 = 80%
R + G + B ~ 90%. #EDF6CC is light color.
R + G + B =
237 + 246 + 204 = 687 (100%)
R 237 of 687 ~ 34.5%
G 246 of 687 ~ 35.81%
B 204 of 687 ~ 29.69%
#EDF6CC color CMYK value is (4,0,17,4).
CMYK: (4,0,17,4) C4M0Y17K4 (4%,0%,17%,4%) (0.04/0.00/0.17/0.04)
ED | F6 | CC | |
---|---|---|---|
RGB | 237 | 246 | 204 |
HSL | 73° | 70.00% | 88.24% |
HSB/HSV | 73° | 17.07% | 96.47% |
CMYK | 3.66% | 0.00% | 17.07% |
3.53% |
HEX | ED | F6 | CC |
Decimal | 237 | 246 | 204 |
Binary | 11101101 | 11110110 | 11001100 |
Octal | 355 | 366 | 314 |
Examples of css and html codes for elements with #EDF6CC color. Also use rgb(237,246,204) instead hex code.
.myTextColor { color: #EDF6CC; }
<p style="color:#EDF6CC">This sample text font color is #EDF6CC.</p>
This text font color is #EDF6CC.
.myBgColor { background-color: #EDF6CC; }
<div style="background-color:#EDF6CC">Inner text</div>
This div background color is #EDF6CC.
.myBorderColor { border: 1px solid #EDF6CC; }
<div style="border:3px solid #EDF6CC">Div</div>
This div border color is #EDF6CC.
.myOpacity80 { color: #EDF6CC; opacity: 0.8; }
<p style="color:#EDF6CC;opacity:0.8;">80%</p>
Text with #EDF6CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDF6CC;}
<p style="text-shadow: 3px 3px 1px #EDF6CC">Text here.</p>
This text has shadow with #EDF6CC color.
.textShadow {text-shadow: 3px 3px 1px #EDF6CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDF6CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDF6CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDF6CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDF6CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDF6CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDF6CC; -webkit-box-shadow: 1px 1px 3px 2px #EDF6CC; box-shadow: 1px 1px 3px 2px #EDF6CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDF6CC; -webkit-box-shadow: 1px 1px 3px 2px #EDF6CC; box-shadow:1px 1px 3px 2px #EDF6CC;">
Div content here</div>
This text has color #EDF6CC on black background.
This text has color #EDF6CC on white background.
This text has black color on #EDF6CC background.
This text has white color on #EDF6CC background.