HEX: #EBD685
RGB: (235,214,133)
#EBD685 contains mainly red and green colors. Web safe color of #EBD685 is #FFCC99 (or #FC9).
#EBD685 color RGB value is (235,214,133).
RGB: (235,214,133) (92%,84%,52%)
R 235 of 255 = 92%
G 214 of 255 = 84%
B 133 of 255 = 52%
R + G + B ~ 76%. #EBD685 is quite light color.
R + G + B =
235 + 214 + 133 = 582 (100%)
R 235 of 582 ~ 40.38%
G 214 of 582 ~ 36.77%
B 133 of 582 ~ 22.85%
#EBD685 color CMYK value is (0,9,43,8).
CMYK: (0,9,43,8) C0M9Y43K8 (0%,9%,43%,8%) (0.00/0.09/0.43/0.08)
EB | D6 | 85 | |
---|---|---|---|
RGB | 235 | 214 | 133 |
HSL | 48° | 71.83% | 72.16% |
HSB/HSV | 48° | 43.40% | 92.16% |
CMYK | 0.00% | 8.94% | 43.40% |
7.84% |
HEX | EB | D6 | 85 |
Decimal | 235 | 214 | 133 |
Binary | 11101011 | 11010110 | 10000101 |
Octal | 353 | 326 | 205 |
Examples of css and html codes for elements with #EBD685 color. Also use rgb(235,214,133) instead hex code.
.myTextColor { color: #EBD685; }
<p style="color:#EBD685">This sample text font color is #EBD685.</p>
This text font color is #EBD685.
.myBgColor { background-color: #EBD685; }
<div style="background-color:#EBD685">Inner text</div>
This div background color is #EBD685.
.myBorderColor { border: 1px solid #EBD685; }
<div style="border:3px solid #EBD685">Div</div>
This div border color is #EBD685.
.myOpacity80 { color: #EBD685; opacity: 0.8; }
<p style="color:#EBD685;opacity:0.8;">80%</p>
Text with #EBD685 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBD685;}
<p style="text-shadow: 3px 3px 1px #EBD685">Text here.</p>
This text has shadow with #EBD685 color.
.textShadow {text-shadow: 3px 3px 1px #EBD685, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBD685, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBD685 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBD685, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBD685, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBD685 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBD685; -webkit-box-shadow: 1px 1px 3px 2px #EBD685; box-shadow: 1px 1px 3px 2px #EBD685; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBD685; -webkit-box-shadow: 1px 1px 3px 2px #EBD685; box-shadow:1px 1px 3px 2px #EBD685;">
Div content here</div>
This text has color #EBD685 on black background.
This text has color #EBD685 on white background.
This text has black color on #EBD685 background.
This text has white color on #EBD685 background.