HEX: #EDFFA3
RGB: (237,255,163)
#EDFFA3 contains mainly red and green colors. Web safe color of #EDFFA3 is #FFFF99 (or #FF9).
#EDFFA3 color RGB value is (237,255,163).
RGB: (237,255,163) (93%,100%,64%)
R 237 of 255 = 93%
G 255 of 255 = 100%
B 163 of 255 = 64%
R + G + B ~ 86%. #EDFFA3 is light color.
R + G + B =
237 + 255 + 163 = 655 (100%)
R 237 of 655 ~ 36.18%
G 255 of 655 ~ 38.93%
B 163 of 655 ~ 24.89%
#EDFFA3 color CMYK value is (7,0,36,0).
CMYK: (7,0,36,0) C7M0Y36K0 (7%,0%,36%,0%) (0.07/0.00/0.36/0.00)
ED | FF | A3 | |
---|---|---|---|
RGB | 237 | 255 | 163 |
HSL | 72° | 100.00% | 81.96% |
HSB/HSV | 72° | 36.08% | 100.00% |
CMYK | 7.06% | 0.00% | 36.08% |
0.00% |
HEX | ED | FF | A3 |
Decimal | 237 | 255 | 163 |
Binary | 11101101 | 11111111 | 10100011 |
Octal | 355 | 377 | 243 |
Examples of css and html codes for elements with #EDFFA3 color. Also use rgb(237,255,163) instead hex code.
.myTextColor { color: #EDFFA3; }
<p style="color:#EDFFA3">This sample text font color is #EDFFA3.</p>
This text font color is #EDFFA3.
.myBgColor { background-color: #EDFFA3; }
<div style="background-color:#EDFFA3">Inner text</div>
This div background color is #EDFFA3.
.myBorderColor { border: 1px solid #EDFFA3; }
<div style="border:3px solid #EDFFA3">Div</div>
This div border color is #EDFFA3.
.myOpacity80 { color: #EDFFA3; opacity: 0.8; }
<p style="color:#EDFFA3;opacity:0.8;">80%</p>
Text with #EDFFA3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDFFA3;}
<p style="text-shadow: 3px 3px 1px #EDFFA3">Text here.</p>
This text has shadow with #EDFFA3 color.
.textShadow {text-shadow: 3px 3px 1px #EDFFA3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDFFA3, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDFFA3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDFFA3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDFFA3, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDFFA3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDFFA3; -webkit-box-shadow: 1px 1px 3px 2px #EDFFA3; box-shadow: 1px 1px 3px 2px #EDFFA3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDFFA3; -webkit-box-shadow: 1px 1px 3px 2px #EDFFA3; box-shadow:1px 1px 3px 2px #EDFFA3;">
Div content here</div>
This text has color #EDFFA3 on black background.
This text has color #EDFFA3 on white background.
This text has black color on #EDFFA3 background.
This text has white color on #EDFFA3 background.