HEX: #EBA59D
RGB: (235,165,157)
#EBA59D contains mainly red color. Web safe color of #EBA59D is #FF9999 (or #F99).
#EBA59D color RGB value is (235,165,157).
RGB: (235,165,157) (92%,65%,62%)
R 235 of 255 = 92%
G 165 of 255 = 65%
B 157 of 255 = 62%
R + G + B ~ 73%. #EBA59D is quite light color.
R + G + B =
235 + 165 + 157 = 557 (100%)
R 235 of 557 ~ 42.19%
G 165 of 557 ~ 29.62%
B 157 of 557 ~ 28.19%
#EBA59D color CMYK value is (0,30,33,8).
CMYK: (0,30,33,8) C0M30Y33K8 (0%,30%,33%,8%) (0.00/0.30/0.33/0.08)
EB | A5 | 9D | |
---|---|---|---|
RGB | 235 | 165 | 157 |
HSL | 6° | 66.10% | 76.86% |
HSB/HSV | 6° | 33.19% | 92.16% |
CMYK | 0.00% | 29.79% | 33.19% |
7.84% |
HEX | EB | A5 | 9D |
Decimal | 235 | 165 | 157 |
Binary | 11101011 | 10100101 | 10011101 |
Octal | 353 | 245 | 235 |
Examples of css and html codes for elements with #EBA59D color. Also use rgb(235,165,157) instead hex code.
.myTextColor { color: #EBA59D; }
<p style="color:#EBA59D">This sample text font color is #EBA59D.</p>
This text font color is #EBA59D.
.myBgColor { background-color: #EBA59D; }
<div style="background-color:#EBA59D">Inner text</div>
This div background color is #EBA59D.
.myBorderColor { border: 1px solid #EBA59D; }
<div style="border:3px solid #EBA59D">Div</div>
This div border color is #EBA59D.
.myOpacity80 { color: #EBA59D; opacity: 0.8; }
<p style="color:#EBA59D;opacity:0.8;">80%</p>
Text with #EBA59D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBA59D;}
<p style="text-shadow: 3px 3px 1px #EBA59D">Text here.</p>
This text has shadow with #EBA59D color.
.textShadow {text-shadow: 3px 3px 1px #EBA59D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBA59D, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBA59D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBA59D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBA59D, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBA59D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBA59D; -webkit-box-shadow: 1px 1px 3px 2px #EBA59D; box-shadow: 1px 1px 3px 2px #EBA59D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBA59D; -webkit-box-shadow: 1px 1px 3px 2px #EBA59D; box-shadow:1px 1px 3px 2px #EBA59D;">
Div content here</div>
This text has color #EBA59D on black background.
This text has color #EBA59D on white background.
This text has black color on #EBA59D background.
This text has white color on #EBA59D background.