HEX: #EBFB6D
RGB: (235,251,109)
#EBFB6D contains mainly red and green colors. Web safe color of #EBFB6D is #FFFF66 (or #FF6).
#EBFB6D color RGB value is (235,251,109).
RGB: (235,251,109) (92%,98%,43%)
R 235 of 255 = 92%
G 251 of 255 = 98%
B 109 of 255 = 43%
R + G + B ~ 78%. #EBFB6D is quite light color.
R + G + B =
235 + 251 + 109 = 595 (100%)
R 235 of 595 ~ 39.5%
G 251 of 595 ~ 42.18%
B 109 of 595 ~ 18.32%
#EBFB6D color CMYK value is (6,0,57,2).
CMYK: (6,0,57,2) C6M0Y57K2 (6%,0%,57%,2%) (0.06/0.00/0.57/0.02)
EB | FB | 6D | |
---|---|---|---|
RGB | 235 | 251 | 109 |
HSL | 67° | 94.67% | 70.59% |
HSB/HSV | 67° | 56.57% | 98.43% |
CMYK | 6.37% | 0.00% | 56.57% |
1.57% |
HEX | EB | FB | 6D |
Decimal | 235 | 251 | 109 |
Binary | 11101011 | 11111011 | 1101101 |
Octal | 353 | 373 | 155 |
Examples of css and html codes for elements with #EBFB6D color. Also use rgb(235,251,109) instead hex code.
.myTextColor { color: #EBFB6D; }
<p style="color:#EBFB6D">This sample text font color is #EBFB6D.</p>
This text font color is #EBFB6D.
.myBgColor { background-color: #EBFB6D; }
<div style="background-color:#EBFB6D">Inner text</div>
This div background color is #EBFB6D.
.myBorderColor { border: 1px solid #EBFB6D; }
<div style="border:3px solid #EBFB6D">Div</div>
This div border color is #EBFB6D.
.myOpacity80 { color: #EBFB6D; opacity: 0.8; }
<p style="color:#EBFB6D;opacity:0.8;">80%</p>
Text with #EBFB6D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBFB6D;}
<p style="text-shadow: 3px 3px 1px #EBFB6D">Text here.</p>
This text has shadow with #EBFB6D color.
.textShadow {text-shadow: 3px 3px 1px #EBFB6D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBFB6D, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBFB6D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBFB6D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBFB6D, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBFB6D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBFB6D; -webkit-box-shadow: 1px 1px 3px 2px #EBFB6D; box-shadow: 1px 1px 3px 2px #EBFB6D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBFB6D; -webkit-box-shadow: 1px 1px 3px 2px #EBFB6D; box-shadow:1px 1px 3px 2px #EBFB6D;">
Div content here</div>
This text has color #EBFB6D on black background.
This text has color #EBFB6D on white background.
This text has black color on #EBFB6D background.
This text has white color on #EBFB6D background.