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