HEX: #EDFCB8
RGB: (237,252,184)
#EDFCB8 contains mainly red and green colors. Web safe color of #EDFCB8 is #FFFFCC (or #FFC).
#EDFCB8 color RGB value is (237,252,184).
RGB: (237,252,184) (93%,99%,72%)
R 237 of 255 = 93%
G 252 of 255 = 99%
B 184 of 255 = 72%
R + G + B ~ 88%. #EDFCB8 is light color.
R + G + B =
237 + 252 + 184 = 673 (100%)
R 237 of 673 ~ 35.22%
G 252 of 673 ~ 37.44%
B 184 of 673 ~ 27.34%
#EDFCB8 color CMYK value is (6,0,27,1).
CMYK: (6,0,27,1) C6M0Y27K1 (6%,0%,27%,1%) (0.06/0.00/0.27/0.01)
ED | FC | B8 | |
---|---|---|---|
RGB | 237 | 252 | 184 |
HSL | 73° | 91.89% | 85.49% |
HSB/HSV | 73° | 26.98% | 98.82% |
CMYK | 5.95% | 0.00% | 26.98% |
1.18% |
HEX | ED | FC | B8 |
Decimal | 237 | 252 | 184 |
Binary | 11101101 | 11111100 | 10111000 |
Octal | 355 | 374 | 270 |
Examples of css and html codes for elements with #EDFCB8 color. Also use rgb(237,252,184) instead hex code.
.myTextColor { color: #EDFCB8; }
<p style="color:#EDFCB8">This sample text font color is #EDFCB8.</p>
This text font color is #EDFCB8.
.myBgColor { background-color: #EDFCB8; }
<div style="background-color:#EDFCB8">Inner text</div>
This div background color is #EDFCB8.
.myBorderColor { border: 1px solid #EDFCB8; }
<div style="border:3px solid #EDFCB8">Div</div>
This div border color is #EDFCB8.
.myOpacity80 { color: #EDFCB8; opacity: 0.8; }
<p style="color:#EDFCB8;opacity:0.8;">80%</p>
Text with #EDFCB8 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDFCB8;}
<p style="text-shadow: 3px 3px 1px #EDFCB8">Text here.</p>
This text has shadow with #EDFCB8 color.
.textShadow {text-shadow: 3px 3px 1px #EDFCB8, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDFCB8, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDFCB8 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDFCB8, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDFCB8, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDFCB8 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDFCB8; -webkit-box-shadow: 1px 1px 3px 2px #EDFCB8; box-shadow: 1px 1px 3px 2px #EDFCB8; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDFCB8; -webkit-box-shadow: 1px 1px 3px 2px #EDFCB8; box-shadow:1px 1px 3px 2px #EDFCB8;">
Div content here</div>
This text has color #EDFCB8 on black background.
This text has color #EDFCB8 on white background.
This text has black color on #EDFCB8 background.
This text has white color on #EDFCB8 background.