HEX: #EDF6BE
RGB: (237,246,190)
#EDF6BE contains red, green and blue colors in about the same proportion. Web safe color of #EDF6BE is #FFFFCC (or #FFC).
#EDF6BE color RGB value is (237,246,190).
RGB: (237,246,190) (93%,96%,75%)
R 237 of 255 = 93%
G 246 of 255 = 96%
B 190 of 255 = 75%
R + G + B ~ 88%. #EDF6BE is light color.
R + G + B =
237 + 246 + 190 = 673 (100%)
R 237 of 673 ~ 35.22%
G 246 of 673 ~ 36.55%
B 190 of 673 ~ 28.23%
#EDF6BE color CMYK value is (4,0,23,4).
CMYK: (4,0,23,4) C4M0Y23K4 (4%,0%,23%,4%) (0.04/0.00/0.23/0.04)
ED | F6 | BE | |
---|---|---|---|
RGB | 237 | 246 | 190 |
HSL | 70° | 75.68% | 85.49% |
HSB/HSV | 70° | 22.76% | 96.47% |
CMYK | 3.66% | 0.00% | 22.76% |
3.53% |
HEX | ED | F6 | BE |
Decimal | 237 | 246 | 190 |
Binary | 11101101 | 11110110 | 10111110 |
Octal | 355 | 366 | 276 |
Examples of css and html codes for elements with #EDF6BE color. Also use rgb(237,246,190) instead hex code.
.myTextColor { color: #EDF6BE; }
<p style="color:#EDF6BE">This sample text font color is #EDF6BE.</p>
This text font color is #EDF6BE.
.myBgColor { background-color: #EDF6BE; }
<div style="background-color:#EDF6BE">Inner text</div>
This div background color is #EDF6BE.
.myBorderColor { border: 1px solid #EDF6BE; }
<div style="border:3px solid #EDF6BE">Div</div>
This div border color is #EDF6BE.
.myOpacity80 { color: #EDF6BE; opacity: 0.8; }
<p style="color:#EDF6BE;opacity:0.8;">80%</p>
Text with #EDF6BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDF6BE;}
<p style="text-shadow: 3px 3px 1px #EDF6BE">Text here.</p>
This text has shadow with #EDF6BE color.
.textShadow {text-shadow: 3px 3px 1px #EDF6BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDF6BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDF6BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDF6BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDF6BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDF6BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDF6BE; -webkit-box-shadow: 1px 1px 3px 2px #EDF6BE; box-shadow: 1px 1px 3px 2px #EDF6BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDF6BE; -webkit-box-shadow: 1px 1px 3px 2px #EDF6BE; box-shadow:1px 1px 3px 2px #EDF6BE;">
Div content here</div>
This text has color #EDF6BE on black background.
This text has color #EDF6BE on white background.
This text has black color on #EDF6BE background.
This text has white color on #EDF6BE background.