HEX: #EDFEEE
RGB: (237,254,238)
#EDFEEE contains red, green and blue colors in about the same proportion. Web safe color of #EDFEEE is #FFFFFF (or #FFF).
#EDFEEE color RGB value is (237,254,238).
RGB: (237,254,238) (93%,100%,93%)
R 237 of 255 = 93%
G 254 of 255 = 100%
B 238 of 255 = 93%
R + G + B ~ 95%. #EDFEEE is light color.
R + G + B =
237 + 254 + 238 = 729 (100%)
R 237 of 729 ~ 32.51%
G 254 of 729 ~ 34.84%
B 238 of 729 ~ 32.65%
#EDFEEE color CMYK value is (7,0,6,0).
CMYK: (7,0,6,0) C7M0Y6K0 (7%,0%,6%,0%) (0.07/0.00/0.06/0.00)
ED | FE | EE | |
---|---|---|---|
RGB | 237 | 254 | 238 |
HSL | 124° | 89.47% | 96.27% |
HSB/HSV | 124° | 6.69% | 99.61% |
CMYK | 6.69% | 0.00% | 6.30% |
0.39% |
HEX | ED | FE | EE |
Decimal | 237 | 254 | 238 |
Binary | 11101101 | 11111110 | 11101110 |
Octal | 355 | 376 | 356 |
Examples of css and html codes for elements with #EDFEEE color. Also use rgb(237,254,238) instead hex code.
.myTextColor { color: #EDFEEE; }
<p style="color:#EDFEEE">This sample text font color is #EDFEEE.</p>
This text font color is #EDFEEE.
.myBgColor { background-color: #EDFEEE; }
<div style="background-color:#EDFEEE">Inner text</div>
This div background color is #EDFEEE.
.myBorderColor { border: 1px solid #EDFEEE; }
<div style="border:3px solid #EDFEEE">Div</div>
This div border color is #EDFEEE.
.myOpacity80 { color: #EDFEEE; opacity: 0.8; }
<p style="color:#EDFEEE;opacity:0.8;">80%</p>
Text with #EDFEEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDFEEE;}
<p style="text-shadow: 3px 3px 1px #EDFEEE">Text here.</p>
This text has shadow with #EDFEEE color.
.textShadow {text-shadow: 3px 3px 1px #EDFEEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDFEEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDFEEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDFEEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDFEEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDFEEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDFEEE; -webkit-box-shadow: 1px 1px 3px 2px #EDFEEE; box-shadow: 1px 1px 3px 2px #EDFEEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDFEEE; -webkit-box-shadow: 1px 1px 3px 2px #EDFEEE; box-shadow:1px 1px 3px 2px #EDFEEE;">
Div content here</div>
This text has color #EDFEEE on black background.
This text has color #EDFEEE on white background.
This text has black color on #EDFEEE background.
This text has white color on #EDFEEE background.