HEX: #EBE153
RGB: (235,225,83)
#EBE153 contains mainly red and green colors. Web safe color of #EBE153 is #FFCC66 (or #FC6).
#EBE153 color RGB value is (235,225,83).
RGB: (235,225,83) (92%,88%,33%)
R 235 of 255 = 92%
G 225 of 255 = 88%
B 83 of 255 = 33%
R + G + B ~ 71%. #EBE153 is quite light color.
R + G + B =
235 + 225 + 83 = 543 (100%)
R 235 of 543 ~ 43.28%
G 225 of 543 ~ 41.44%
B 83 of 543 ~ 15.29%
#EBE153 color CMYK value is (0,4,65,8).
CMYK: (0,4,65,8) C0M4Y65K8 (0%,4%,65%,8%) (0.00/0.04/0.65/0.08)
EB | E1 | 53 | |
---|---|---|---|
RGB | 235 | 225 | 83 |
HSL | 56° | 79.17% | 62.35% |
HSB/HSV | 56° | 64.68% | 92.16% |
CMYK | 0.00% | 4.26% | 64.68% |
7.84% |
HEX | EB | E1 | 53 |
Decimal | 235 | 225 | 83 |
Binary | 11101011 | 11100001 | 1010011 |
Octal | 353 | 341 | 123 |
Examples of css and html codes for elements with #EBE153 color. Also use rgb(235,225,83) instead hex code.
.myTextColor { color: #EBE153; }
<p style="color:#EBE153">This sample text font color is #EBE153.</p>
This text font color is #EBE153.
.myBgColor { background-color: #EBE153; }
<div style="background-color:#EBE153">Inner text</div>
This div background color is #EBE153.
.myBorderColor { border: 1px solid #EBE153; }
<div style="border:3px solid #EBE153">Div</div>
This div border color is #EBE153.
.myOpacity80 { color: #EBE153; opacity: 0.8; }
<p style="color:#EBE153;opacity:0.8;">80%</p>
Text with #EBE153 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBE153;}
<p style="text-shadow: 3px 3px 1px #EBE153">Text here.</p>
This text has shadow with #EBE153 color.
.textShadow {text-shadow: 3px 3px 1px #EBE153, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBE153, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBE153 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBE153, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBE153, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBE153 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBE153; -webkit-box-shadow: 1px 1px 3px 2px #EBE153; box-shadow: 1px 1px 3px 2px #EBE153; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBE153; -webkit-box-shadow: 1px 1px 3px 2px #EBE153; box-shadow:1px 1px 3px 2px #EBE153;">
Div content here</div>
This text has color #EBE153 on black background.
This text has color #EBE153 on white background.
This text has black color on #EBE153 background.
This text has white color on #EBE153 background.