HEX: #EBE6BF
RGB: (235,230,191)
#EBE6BF contains red, green and blue colors in about the same proportion. Web safe color of #EBE6BF is #FFCCCC (or #FCC).
#EBE6BF color RGB value is (235,230,191).
RGB: (235,230,191) (92%,90%,75%)
R 235 of 255 = 92%
G 230 of 255 = 90%
B 191 of 255 = 75%
R + G + B ~ 86%. #EBE6BF is light color.
R + G + B =
235 + 230 + 191 = 656 (100%)
R 235 of 656 ~ 35.82%
G 230 of 656 ~ 35.06%
B 191 of 656 ~ 29.12%
#EBE6BF color CMYK value is (0,2,19,8).
CMYK: (0,2,19,8) C0M2Y19K8 (0%,2%,19%,8%) (0.00/0.02/0.19/0.08)
EB | E6 | BF | |
---|---|---|---|
RGB | 235 | 230 | 191 |
HSL | 53° | 52.38% | 83.53% |
HSB/HSV | 53° | 18.72% | 92.16% |
CMYK | 0.00% | 2.13% | 18.72% |
7.84% |
HEX | EB | E6 | BF |
Decimal | 235 | 230 | 191 |
Binary | 11101011 | 11100110 | 10111111 |
Octal | 353 | 346 | 277 |
Examples of css and html codes for elements with #EBE6BF color. Also use rgb(235,230,191) instead hex code.
.myTextColor { color: #EBE6BF; }
<p style="color:#EBE6BF">This sample text font color is #EBE6BF.</p>
This text font color is #EBE6BF.
.myBgColor { background-color: #EBE6BF; }
<div style="background-color:#EBE6BF">Inner text</div>
This div background color is #EBE6BF.
.myBorderColor { border: 1px solid #EBE6BF; }
<div style="border:3px solid #EBE6BF">Div</div>
This div border color is #EBE6BF.
.myOpacity80 { color: #EBE6BF; opacity: 0.8; }
<p style="color:#EBE6BF;opacity:0.8;">80%</p>
Text with #EBE6BF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBE6BF;}
<p style="text-shadow: 3px 3px 1px #EBE6BF">Text here.</p>
This text has shadow with #EBE6BF color.
.textShadow {text-shadow: 3px 3px 1px #EBE6BF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBE6BF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBE6BF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBE6BF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBE6BF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBE6BF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBE6BF; -webkit-box-shadow: 1px 1px 3px 2px #EBE6BF; box-shadow: 1px 1px 3px 2px #EBE6BF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBE6BF; -webkit-box-shadow: 1px 1px 3px 2px #EBE6BF; box-shadow:1px 1px 3px 2px #EBE6BF;">
Div content here</div>
This text has color #EBE6BF on black background.
This text has color #EBE6BF on white background.
This text has black color on #EBE6BF background.
This text has white color on #EBE6BF background.