HEX: #EBBEB9
RGB: (235,190,185)
#EBBEB9 contains red, green and blue colors in about the same proportion. Web safe color of #EBBEB9 is #FFCCCC (or #FCC).
#EBBEB9 color RGB value is (235,190,185).
RGB: (235,190,185) (92%,75%,73%)
R 235 of 255 = 92%
G 190 of 255 = 75%
B 185 of 255 = 73%
R + G + B ~ 80%. #EBBEB9 is quite light color.
R + G + B =
235 + 190 + 185 = 610 (100%)
R 235 of 610 ~ 38.52%
G 190 of 610 ~ 31.15%
B 185 of 610 ~ 30.33%
#EBBEB9 color CMYK value is (0,19,21,8).
CMYK: (0,19,21,8) C0M19Y21K8 (0%,19%,21%,8%) (0.00/0.19/0.21/0.08)
EB | BE | B9 | |
---|---|---|---|
RGB | 235 | 190 | 185 |
HSL | 6° | 55.56% | 82.35% |
HSB/HSV | 6° | 21.28% | 92.16% |
CMYK | 0.00% | 19.15% | 21.28% |
7.84% |
HEX | EB | BE | B9 |
Decimal | 235 | 190 | 185 |
Binary | 11101011 | 10111110 | 10111001 |
Octal | 353 | 276 | 271 |
Examples of css and html codes for elements with #EBBEB9 color. Also use rgb(235,190,185) instead hex code.
.myTextColor { color: #EBBEB9; }
<p style="color:#EBBEB9">This sample text font color is #EBBEB9.</p>
This text font color is #EBBEB9.
.myBgColor { background-color: #EBBEB9; }
<div style="background-color:#EBBEB9">Inner text</div>
This div background color is #EBBEB9.
.myBorderColor { border: 1px solid #EBBEB9; }
<div style="border:3px solid #EBBEB9">Div</div>
This div border color is #EBBEB9.
.myOpacity80 { color: #EBBEB9; opacity: 0.8; }
<p style="color:#EBBEB9;opacity:0.8;">80%</p>
Text with #EBBEB9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBBEB9;}
<p style="text-shadow: 3px 3px 1px #EBBEB9">Text here.</p>
This text has shadow with #EBBEB9 color.
.textShadow {text-shadow: 3px 3px 1px #EBBEB9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBBEB9, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBBEB9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBBEB9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBBEB9, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBBEB9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBBEB9; -webkit-box-shadow: 1px 1px 3px 2px #EBBEB9; box-shadow: 1px 1px 3px 2px #EBBEB9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBBEB9; -webkit-box-shadow: 1px 1px 3px 2px #EBBEB9; box-shadow:1px 1px 3px 2px #EBBEB9;">
Div content here</div>
This text has color #EBBEB9 on black background.
This text has color #EBBEB9 on white background.
This text has black color on #EBBEB9 background.
This text has white color on #EBBEB9 background.