HEX: #EBF0BF
RGB: (235,240,191)
#EBF0BF contains red, green and blue colors in about the same proportion. Web safe color of #EBF0BF is #FFFFCC (or #FFC).
#EBF0BF color RGB value is (235,240,191).
RGB: (235,240,191) (92%,94%,75%)
R 235 of 255 = 92%
G 240 of 255 = 94%
B 191 of 255 = 75%
R + G + B ~ 87%. #EBF0BF is light color.
R + G + B =
235 + 240 + 191 = 666 (100%)
R 235 of 666 ~ 35.29%
G 240 of 666 ~ 36.04%
B 191 of 666 ~ 28.68%
#EBF0BF color CMYK value is (2,0,20,6).
CMYK: (2,0,20,6) C2M0Y20K6 (2%,0%,20%,6%) (0.02/0.00/0.20/0.06)
EB | F0 | BF | |
---|---|---|---|
RGB | 235 | 240 | 191 |
HSL | 66° | 62.03% | 84.51% |
HSB/HSV | 66° | 20.42% | 94.12% |
CMYK | 2.08% | 0.00% | 20.42% |
5.88% |
HEX | EB | F0 | BF |
Decimal | 235 | 240 | 191 |
Binary | 11101011 | 11110000 | 10111111 |
Octal | 353 | 360 | 277 |
Examples of css and html codes for elements with #EBF0BF color. Also use rgb(235,240,191) instead hex code.
.myTextColor { color: #EBF0BF; }
<p style="color:#EBF0BF">This sample text font color is #EBF0BF.</p>
This text font color is #EBF0BF.
.myBgColor { background-color: #EBF0BF; }
<div style="background-color:#EBF0BF">Inner text</div>
This div background color is #EBF0BF.
.myBorderColor { border: 1px solid #EBF0BF; }
<div style="border:3px solid #EBF0BF">Div</div>
This div border color is #EBF0BF.
.myOpacity80 { color: #EBF0BF; opacity: 0.8; }
<p style="color:#EBF0BF;opacity:0.8;">80%</p>
Text with #EBF0BF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBF0BF;}
<p style="text-shadow: 3px 3px 1px #EBF0BF">Text here.</p>
This text has shadow with #EBF0BF color.
.textShadow {text-shadow: 3px 3px 1px #EBF0BF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBF0BF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBF0BF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBF0BF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBF0BF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBF0BF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBF0BF; -webkit-box-shadow: 1px 1px 3px 2px #EBF0BF; box-shadow: 1px 1px 3px 2px #EBF0BF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBF0BF; -webkit-box-shadow: 1px 1px 3px 2px #EBF0BF; box-shadow:1px 1px 3px 2px #EBF0BF;">
Div content here</div>
This text has color #EBF0BF on black background.
This text has color #EBF0BF on white background.
This text has black color on #EBF0BF background.
This text has white color on #EBF0BF background.