HEX: #EDFCF6
RGB: (237,252,246)
#EDFCF6 contains red, green and blue colors in about the same proportion. Web safe color of #EDFCF6 is #FFFFFF (or #FFF).
#EDFCF6 color RGB value is (237,252,246).
RGB: (237,252,246) (93%,99%,96%)
R 237 of 255 = 93%
G 252 of 255 = 99%
B 246 of 255 = 96%
R + G + B ~ 96%. #EDFCF6 is light color.
R + G + B =
237 + 252 + 246 = 735 (100%)
R 237 of 735 ~ 32.24%
G 252 of 735 ~ 34.29%
B 246 of 735 ~ 33.47%
#EDFCF6 color CMYK value is (6,0,2,1).
CMYK: (6,0,2,1) C6M0Y2K1 (6%,0%,2%,1%) (0.06/0.00/0.02/0.01)
ED | FC | F6 | |
---|---|---|---|
RGB | 237 | 252 | 246 |
HSL | 156° | 71.43% | 95.88% |
HSB/HSV | 156° | 5.95% | 98.82% |
CMYK | 5.95% | 0.00% | 2.38% |
1.18% |
HEX | ED | FC | F6 |
Decimal | 237 | 252 | 246 |
Binary | 11101101 | 11111100 | 11110110 |
Octal | 355 | 374 | 366 |
Examples of css and html codes for elements with #EDFCF6 color. Also use rgb(237,252,246) instead hex code.
.myTextColor { color: #EDFCF6; }
<p style="color:#EDFCF6">This sample text font color is #EDFCF6.</p>
This text font color is #EDFCF6.
.myBgColor { background-color: #EDFCF6; }
<div style="background-color:#EDFCF6">Inner text</div>
This div background color is #EDFCF6.
.myBorderColor { border: 1px solid #EDFCF6; }
<div style="border:3px solid #EDFCF6">Div</div>
This div border color is #EDFCF6.
.myOpacity80 { color: #EDFCF6; opacity: 0.8; }
<p style="color:#EDFCF6;opacity:0.8;">80%</p>
Text with #EDFCF6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDFCF6;}
<p style="text-shadow: 3px 3px 1px #EDFCF6">Text here.</p>
This text has shadow with #EDFCF6 color.
.textShadow {text-shadow: 3px 3px 1px #EDFCF6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDFCF6, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDFCF6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDFCF6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDFCF6, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDFCF6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDFCF6; -webkit-box-shadow: 1px 1px 3px 2px #EDFCF6; box-shadow: 1px 1px 3px 2px #EDFCF6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDFCF6; -webkit-box-shadow: 1px 1px 3px 2px #EDFCF6; box-shadow:1px 1px 3px 2px #EDFCF6;">
Div content here</div>
This text has color #EDFCF6 on black background.
This text has color #EDFCF6 on white background.
This text has black color on #EDFCF6 background.
This text has white color on #EDFCF6 background.