HEX: #EBDB9B
RGB: (235,219,155)
#EBDB9B contains mainly red and green colors. Web safe color of #EBDB9B is #FFCC99 (or #FC9).
#EBDB9B color RGB value is (235,219,155).
RGB: (235,219,155) (92%,86%,61%)
R 235 of 255 = 92%
G 219 of 255 = 86%
B 155 of 255 = 61%
R + G + B ~ 80%. #EBDB9B is quite light color.
R + G + B =
235 + 219 + 155 = 609 (100%)
R 235 of 609 ~ 38.59%
G 219 of 609 ~ 35.96%
B 155 of 609 ~ 25.45%
#EBDB9B color CMYK value is (0,7,34,8).
CMYK: (0,7,34,8) C0M7Y34K8 (0%,7%,34%,8%) (0.00/0.07/0.34/0.08)
EB | DB | 9B | |
---|---|---|---|
RGB | 235 | 219 | 155 |
HSL | 48° | 66.67% | 76.47% |
HSB/HSV | 48° | 34.04% | 92.16% |
CMYK | 0.00% | 6.81% | 34.04% |
7.84% |
HEX | EB | DB | 9B |
Decimal | 235 | 219 | 155 |
Binary | 11101011 | 11011011 | 10011011 |
Octal | 353 | 333 | 233 |
Examples of css and html codes for elements with #EBDB9B color. Also use rgb(235,219,155) instead hex code.
.myTextColor { color: #EBDB9B; }
<p style="color:#EBDB9B">This sample text font color is #EBDB9B.</p>
This text font color is #EBDB9B.
.myBgColor { background-color: #EBDB9B; }
<div style="background-color:#EBDB9B">Inner text</div>
This div background color is #EBDB9B.
.myBorderColor { border: 1px solid #EBDB9B; }
<div style="border:3px solid #EBDB9B">Div</div>
This div border color is #EBDB9B.
.myOpacity80 { color: #EBDB9B; opacity: 0.8; }
<p style="color:#EBDB9B;opacity:0.8;">80%</p>
Text with #EBDB9B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBDB9B;}
<p style="text-shadow: 3px 3px 1px #EBDB9B">Text here.</p>
This text has shadow with #EBDB9B color.
.textShadow {text-shadow: 3px 3px 1px #EBDB9B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBDB9B, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBDB9B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBDB9B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBDB9B, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBDB9B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBDB9B; -webkit-box-shadow: 1px 1px 3px 2px #EBDB9B; box-shadow: 1px 1px 3px 2px #EBDB9B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBDB9B; -webkit-box-shadow: 1px 1px 3px 2px #EBDB9B; box-shadow:1px 1px 3px 2px #EBDB9B;">
Div content here</div>
This text has color #EBDB9B on black background.
This text has color #EBDB9B on white background.
This text has black color on #EBDB9B background.
This text has white color on #EBDB9B background.