HEX: #EBCD80
RGB: (235,205,128)
#EBCD80 contains mainly red and green colors. Web safe color of #EBCD80 is #FFCC66 (or #FC6).
#EBCD80 color RGB value is (235,205,128).
RGB: (235,205,128) (92%,80%,50%)
R 235 of 255 = 92%
G 205 of 255 = 80%
B 128 of 255 = 50%
R + G + B ~ 74%. #EBCD80 is quite light color.
R + G + B =
235 + 205 + 128 = 568 (100%)
R 235 of 568 ~ 41.37%
G 205 of 568 ~ 36.09%
B 128 of 568 ~ 22.54%
#EBCD80 color CMYK value is (0,13,46,8).
CMYK: (0,13,46,8) C0M13Y46K8 (0%,13%,46%,8%) (0.00/0.13/0.46/0.08)
EB | CD | 80 | |
---|---|---|---|
RGB | 235 | 205 | 128 |
HSL | 43° | 72.79% | 71.18% |
HSB/HSV | 43° | 45.53% | 92.16% |
CMYK | 0.00% | 12.77% | 45.53% |
7.84% |
HEX | EB | CD | 80 |
Decimal | 235 | 205 | 128 |
Binary | 11101011 | 11001101 | 10000000 |
Octal | 353 | 315 | 200 |
Examples of css and html codes for elements with #EBCD80 color. Also use rgb(235,205,128) instead hex code.
.myTextColor { color: #EBCD80; }
<p style="color:#EBCD80">This sample text font color is #EBCD80.</p>
This text font color is #EBCD80.
.myBgColor { background-color: #EBCD80; }
<div style="background-color:#EBCD80">Inner text</div>
This div background color is #EBCD80.
.myBorderColor { border: 1px solid #EBCD80; }
<div style="border:3px solid #EBCD80">Div</div>
This div border color is #EBCD80.
.myOpacity80 { color: #EBCD80; opacity: 0.8; }
<p style="color:#EBCD80;opacity:0.8;">80%</p>
Text with #EBCD80 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBCD80;}
<p style="text-shadow: 3px 3px 1px #EBCD80">Text here.</p>
This text has shadow with #EBCD80 color.
.textShadow {text-shadow: 3px 3px 1px #EBCD80, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBCD80, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBCD80 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBCD80, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBCD80, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBCD80 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBCD80; -webkit-box-shadow: 1px 1px 3px 2px #EBCD80; box-shadow: 1px 1px 3px 2px #EBCD80; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBCD80; -webkit-box-shadow: 1px 1px 3px 2px #EBCD80; box-shadow:1px 1px 3px 2px #EBCD80;">
Div content here</div>
This text has color #EBCD80 on black background.
This text has color #EBCD80 on white background.
This text has black color on #EBCD80 background.
This text has white color on #EBCD80 background.