HEX: #EDEDF1
RGB: (237,237,241)
#EDEDF1 contains red, green and blue colors in about the same proportion. Web safe color of #EDEDF1 is #FFFFFF (or #FFF).
#EDEDF1 color RGB value is (237,237,241).
RGB: (237,237,241) (93%,93%,95%)
R 237 of 255 = 93%
G 237 of 255 = 93%
B 241 of 255 = 95%
R + G + B ~ 94%. #EDEDF1 is light color.
R + G + B =
237 + 237 + 241 = 715 (100%)
R 237 of 715 ~ 33.15%
G 237 of 715 ~ 33.15%
B 241 of 715 ~ 33.71%
#EDEDF1 color CMYK value is (2,2,0,5).
CMYK: (2,2,0,5) C2M2Y0K5 (2%,2%,0%,5%) (0.02/0.02/0.00/0.05)
ED | ED | F1 | |
---|---|---|---|
RGB | 237 | 237 | 241 |
HSL | 240° | 12.50% | 93.73% |
HSB/HSV | 240° | 1.66% | 94.51% |
CMYK | 1.66% | 1.66% | 0.00% |
5.49% |
HEX | ED | ED | F1 |
Decimal | 237 | 237 | 241 |
Binary | 11101101 | 11101101 | 11110001 |
Octal | 355 | 355 | 361 |
Examples of css and html codes for elements with #EDEDF1 color. Also use rgb(237,237,241) instead hex code.
.myTextColor { color: #EDEDF1; }
<p style="color:#EDEDF1">This sample text font color is #EDEDF1.</p>
This text font color is #EDEDF1.
.myBgColor { background-color: #EDEDF1; }
<div style="background-color:#EDEDF1">Inner text</div>
This div background color is #EDEDF1.
.myBorderColor { border: 1px solid #EDEDF1; }
<div style="border:3px solid #EDEDF1">Div</div>
This div border color is #EDEDF1.
.myOpacity80 { color: #EDEDF1; opacity: 0.8; }
<p style="color:#EDEDF1;opacity:0.8;">80%</p>
Text with #EDEDF1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDEDF1;}
<p style="text-shadow: 3px 3px 1px #EDEDF1">Text here.</p>
This text has shadow with #EDEDF1 color.
.textShadow {text-shadow: 3px 3px 1px #EDEDF1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDEDF1, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDEDF1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDEDF1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDEDF1, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDEDF1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDEDF1; -webkit-box-shadow: 1px 1px 3px 2px #EDEDF1; box-shadow: 1px 1px 3px 2px #EDEDF1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDEDF1; -webkit-box-shadow: 1px 1px 3px 2px #EDEDF1; box-shadow:1px 1px 3px 2px #EDEDF1;">
Div content here</div>
This text has color #EDEDF1 on black background.
This text has color #EDEDF1 on white background.
This text has black color on #EDEDF1 background.
This text has white color on #EDEDF1 background.